摘要: 求集合不重复的子集: 下面python的写法很好啊! 其他的详细参考:https://blog.csdn.net/happyaaaaaaaaaaa/article/details/51604217 阅读全文
posted @ 2018-04-03 23:00 Sherry_Yang 阅读(152) 评论(0) 推荐(0) 编辑
摘要: Examples: Input: S = "a1b2" Output: ["a1b2", "a1B2", "A1b2", "A1B2"] Input: S = "3z4" Output: ["3z4", "3Z4"] Input: S = "12345" Output: ["12345"] class Solution { public: vector letterCasePermu... 阅读全文
posted @ 2018-04-03 20:39 Sherry_Yang 阅读(393) 评论(0) 推荐(0) 编辑