Corin Lawson 7f7eb7c0a8
feat(iterators5): Introduce fibonacci exercise
Every good programming exercise book should include the fibonacci
numbers!

One possible solution:

    (0..i).fold((0, 1), |(a, b), _| (b, a + b)).1

Signed-off-by: Corin Lawson <corin@responsight.com>
2019-06-14 14:11:20 +10:00
..
2019-03-23 14:19:42 -06:00
2019-03-23 14:19:42 -06:00
2019-03-23 14:19:42 -06:00
2019-05-26 14:45:04 +02:00
2019-03-23 14:19:42 -06:00
2019-03-23 14:19:42 -06:00
2019-03-23 14:19:42 -06:00
2019-02-15 12:06:05 +01:00
2019-03-23 14:19:42 -06:00
2019-01-23 20:48:01 +01:00