最长公共前缀
Question: 最长公共前缀
👉LeetCode链接👈
Write a function to find the longest common prefix string amongst an array of strings.
在一个以字符串为元素的列表中,寻找这些字符串的最长公共前缀
Example
1 | 给定列表['asdfrasfda', 'asdfasdf', 'asdfghdfgh'] |
Answer
1 | def longestCommonPrefix(strs): |
Finally
思路都在上面代码注释中
我是个初学渣渣,如果有大神发现我的代码中有什么问题的话希望能够随时指正,我一定会虚心接受的。