aboutsummaryrefslogtreecommitdiffstats
path: root/002.py
diff options
context:
space:
mode:
authorRomain Gonçalves <me@rgoncalves.se>2022-01-28 18:51:40 +0100
committerRomain Gonçalves <me@rgoncalves.se>2022-01-28 18:51:40 +0100
commit24b3966960a65775bfffca514600e2e47304d000 (patch)
tree332e19d923e1bf930c5370e97e84d9ab74f9e438 /002.py
parent7f93a4f807499441826042f59f9d5dad59854e69 (diff)
downloadprojecteuler-24b3966960a65775bfffca514600e2e47304d000.tar.gz
002: Add python and elixir solutions
Diffstat (limited to '002.py')
-rw-r--r--002.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/002.py b/002.py
new file mode 100644
index 0000000..4edd181
--- /dev/null
+++ b/002.py
@@ -0,0 +1,8 @@
+def fibo(max):
+ a, b = 1, 2
+ while a < max:
+ yield a
+ a, b = b, a + b
+
+
+print(sum(list(filter(lambda n: n % 2 == 0, list(fibo(4000000))))))
remember that computers suck.