aboutsummaryrefslogtreecommitdiffstats
path: root/001.py
diff options
context:
space:
mode:
authorRomain Gonçalves <me@rgoncalves.se>2022-01-26 18:40:44 +0100
committerRomain Gonçalves <me@rgoncalves.se>2022-01-26 18:45:02 +0100
commit7f93a4f807499441826042f59f9d5dad59854e69 (patch)
tree38496b61bd70ffe37d537a2c95fd9041846f4479 /001.py
parent36e4a95364966e3936bee379589629aaccf569ad (diff)
downloadprojecteuler-7f93a4f807499441826042f59f9d5dad59854e69.tar.gz
001: Add python and elixir solutions
Diffstat (limited to '001.py')
-rw-r--r--001.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/001.py b/001.py
new file mode 100644
index 0000000..4cc6db7
--- /dev/null
+++ b/001.py
@@ -0,0 +1 @@
+print(sum([x for x in range(0, 1000) if x % 3 == 0 or x % 5 == 0]))
remember that computers suck.