mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-26 05:23:42 +03:00
5 lines
102 B
Python
5 lines
102 B
Python
with open("24.txt") as f:
|
|
data = f.read().split(" ")
|
|
|
|
print(min([len(x) for x in data if x]))
|