摘要: 1、面试题 08.08. 有重复字符串的排列组合 class Solution: def permutation(self, S: str) -> List[str]: def bfs(cur_list): next_list = [] for cur in cur_list: cur_str, l 阅读全文
posted @ 2020-12-09 20:34 哈哈哈喽喽喽 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1、面试题 08.14. 布尔运算 考点: 1、DFS class Solution: def countEval(self, s: str, result: int) -> int: self.ops = { '&': { True: [(True, True)], False: [(True, 阅读全文
posted @ 2020-12-09 20:15 哈哈哈喽喽喽 阅读(58) 评论(0) 推荐(0) 编辑