Even Fibonacci Numbers
Problem:
Find the sum of even Fibonacci numbers under 4 million.
Approach:
First step is to create a function that produces all the Fibonacci numbers.
I am fortunate to have seen someone else’s brilliant solution to this problem:
a = first number
b = second number
c = a + b
Then…