Simple python one-liner.

This commit is contained in:
pikatech 2017-06-08 21:45:05 +02:00 committed by GitHub
parent 5b8cd633e7
commit 10e3909cee

1
1/euler1.py Normal file
View file

@ -0,0 +1 @@
sum([x for x in range(1,1000) if x % 5 == 0 or x % 3 == 0])