摘要: 1.个人所做代码class Solution: def generate(self, numRows): """ :type numRows: int :rtype: List[List[int]] """... 阅读全文
posted @ 2018-05-04 20:44 kkkkkksssss 阅读(112) 评论(0) 推荐(0) 编辑
摘要: class Solution: def isAllIn(self, word, strs): flag = True for s in word: if s not in strs: ... 阅读全文
posted @ 2018-05-04 11:29 kkkkkksssss 阅读(115) 评论(0) 推荐(0) 编辑
摘要: class Solution: def uniqueMorseRepresentations(self, words): """ :type words: List[str] :rtype: int """... 阅读全文
posted @ 2018-05-04 09:21 kkkkkksssss 阅读(119) 评论(0) 推荐(0) 编辑