Commit graph

5 commits

Author SHA1 Message Date
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
Russell Cousineau 433d2115bc fix(iterators): Rename iterator3.rs 2019-06-07 14:42:44 -07:00
Brian Kung 9b92aa08ae Adds a simple exercise for structures 2019-05-25 06:39:58 -05:00
LesnyRumcajs 58ccd72aff
Add standard library types to exercises suite 2019-03-13 15:29:02 +01:00
lyn 70e59cca3c standardize exercise running via an external toml file 2019-03-06 21:47:33 +01:00