摘要:
1.个人所做代码class Solution: def generate(self, numRows): """ :type numRows: int :rtype: List[List[int]] """... 阅读全文
摘要:
class Solution: def isAllIn(self, word, strs): flag = True for s in word: if s not in strs: ... 阅读全文
摘要:
class Solution: def uniqueMorseRepresentations(self, words): """ :type words: List[str] :rtype: int """... 阅读全文