摘要: 献上我的做题方法和思路。 class Solution(object): def longestCommonPrefix(self, strs): """ :type strs: List[str] :rtype: str """ common = '' time = 0 len_list = [] 阅读全文
posted @ 2018-06-04 21:05 南邮果粒橙 阅读(249) 评论(0) 推荐(0) 编辑