Внесены изменения в проект

This commit is contained in:
TuhtaevVadim 2024-12-19 10:55:00 +04:00
parent de5065fedd
commit 4fbac5f7fb

View File

@ -1,4 +1,4 @@
def longestCommonPrefix(strs) -> str: def longestCommonPrefix(strs):
s = min(strs, key=len) s = min(strs, key=len)
prefix = [] prefix = []
for i in range(len(s)): for i in range(len(s)):