10.2 change collect function from list to iter

This commit is contained in:
Fedor Lyanguzov
2024-12-10 14:35:21 +03:00
parent 7751368d02
commit df8549d801
+1 -1
View File
@@ -39,4 +39,4 @@ d = '''
d = [list(map(int, x)) for x in d]
print(f1(d))
print(f1(data, list))
print(f1(data, iter))