AoC2020/01-2-1.py

3 lines
88 B
Python
Raw Normal View History

2020-12-04 11:37:31 +00:00
l=list(map(int,open(0)))
2020-12-03 21:34:39 +00:00
print([a*b*c for a in l for b in l for c in l if a+b+c==2020])