mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2025-01-22 22:54:08 +03:00
7 lines
139 B
Python
Vendored
7 lines
139 B
Python
Vendored
with open("17.txt") as f:
|
|
data = list(map(int, f.read().split()))
|
|
|
|
n = [x for x in data if "4" in str(x)]
|
|
|
|
print(len(n), max(n))
|