mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-24 20:43:43 +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]))
|