Simple python one-liner.
This commit is contained in:
parent
5b8cd633e7
commit
10e3909cee
1 changed files with 1 additions and 0 deletions
1
1/euler1.py
Normal file
1
1/euler1.py
Normal file
|
@ -0,0 +1 @@
|
|||
sum([x for x in range(1,1000) if x % 5 == 0 or x % 3 == 0])
|
Reference in a new issue