rustlings/exercises
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
..
error_handling Auto merge of #162 - c-rustacean:rustfmt-and-ws-fixes, r=komaeda 2019-05-23 11:01:15 +00:00
functions Fix permissions on source files 2019-03-23 14:19:42 -06:00
if Fix permissions on source files 2019-03-23 14:19:42 -06:00
macros Fix permissions on source files 2019-03-23 14:19:42 -06:00
modules Fix broken link 2019-05-26 14:45:04 +02:00
move_semantics Add errors to exercises that compile without user changes 2019-04-22 00:09:30 +02:00
primitive_types Fix permissions on source files 2019-03-23 14:19:42 -06:00
standard_library_types feat(iterators5): Introduce fibonacci exercise 2019-06-14 14:11:20 +10:00
strings Fix permissions on source files 2019-03-23 14:19:42 -06:00
structs Adds a simple exercise for structures 2019-05-25 06:39:58 -05:00
tests Fix permissions on source files 2019-03-23 14:19:42 -06:00
threads chore: Fix link to Arc<T> in the book 2019-06-09 13:45:53 +02:00
variables Fix permissions on source files 2019-03-23 14:19:42 -06:00
test1.rs fix test command execution 2019-02-15 12:06:05 +01:00
test2.rs Add errors to exercises that compile without user changes 2019-04-22 00:09:30 +02:00
test3.rs Fix permissions on source files 2019-03-23 14:19:42 -06:00
test4.rs add tests; refactor exercise links 2019-01-23 20:48:01 +01:00