1
0
www.mikescher.com/www/statics/aoc/2017/02_solution-2.py

19 lines
355 B
Python
Raw Normal View History

2020-01-13 12:57:50 +01:00
#!/usr/bin/env python3
import aoc
rawinput = aoc.read_input(2)
result = 0
for line in rawinput.splitlines():
values = list(map(lambda d: int(d), line.split('\t')))
for v1 in values:
for v2 in values:
if v1 == v2:
continue
if v1 % v2 == 0:
result = result + v1//v2
print(result)