Skip to content

Commit

Permalink
chore(iterators5): Minor formatting improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
yourname committed Apr 24, 2021
1 parent 85d37f0 commit c6fb71c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions exercises/standard_library_types/iterators5.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
// iterators5.rs

// Let's define a simple model to track Rustlings exercise progress. Progress
// will be modelled using a hash map. The name of the exercise is the key and
// the progress is the value. Two counting functions were created to count the
// number of exercises with a given progress. These counting functions use
// imperative style for loops. Recreate this counting functionality using
// iterators. Only the two iterator methods (count_iterator and
// count_collection_iterator) need to be modified.
// Execute `rustlings hint
// iterators5` for hints.
// Execute `rustlings hint iterators5` for hints.
//
// Make the code compile and the tests pass.

Expand Down

0 comments on commit c6fb71c

Please sign in to comment.