摘要: leetcode:编写一个函数来查找字符串数组中的最长公共前缀。如果不存在公共前缀,返回空字符串 "" 点击查看代码 from typing import List class Solution: def longestCommonPrefix(self, strs: List[str]) -> s 阅读全文
posted @ 2021-09-24 22:28 xifang 阅读(203) 评论(0) 推荐(0)