为什么第12行还要有那一句
class Solution:def longestCommonPrefix(self, strs: List) -> str:
if not strs:
return ""
lenght,count = len(strs),len(strs)
for i in range(lenght):
a = strs
if any(i==len(strs) or a!=strs for j in range(1,count)):
return strs
return strs 如果上面的所有return都没有实现,那么作为函数,总是要返回点啥的 wp231957 发表于 2022-4-30 17:59
如果上面的所有return都没有实现,那么作为函数,总是要返回点啥的
懂了
页:
[1]