摘要: 1 class Solution: 2 def stringMatching(self, words: 'List[str]') -> 'List[str]': 3 n = len(words) 4 words = sorted(words,key=lambda x:len(x)) 5 res = 阅读全文
posted @ 2020-04-12 12:41 Sempron2800+ 阅读(183) 评论(0) 推荐(0)