aboutsummaryrefslogtreecommitdiffstats
path: root/002.py
blob: 4edd18163d4d9761e31f5d302e80e105ddb7961c (plain) (blame)
1
2
3
4
5
6
7
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.