-
Notifications
You must be signed in to change notification settings - Fork 10.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add "collections" exercises #572
Conversation
Hi @sazid, thanks for these exercises. They're very useful. I have two suggestions:
Other than these two things, there is really nothing else I can comment on. Thanks, |
Thanks for your suggestions! |
@AbdouSeck I've resolved the issues and also squashed into two separate commits. Thanks. |
@sazid looks good to me. Thank you! @fmoko I think this can be merged. Abdou |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the exercises, and @AbdouSeck for the review!
@all-contributors please add @sazid for content and code |
@fmoko I've put up a pull request to add @sazid! 🎉 |
Since
Vec
andHashMap
are two fundamental data structures that are used often in every programming languages, I added 4 new exercises for them.vec1.rs
andvec2.rs
for exercises related toVec
tors. First exercise focuses on declaration of vectors and second exercise focuses on iteration and mutability.hashmap1.rs
andhashmap2.rs
exercises forHashMap
s. First exercise focuses on declaration and insertion. Second exercise focuses onentry()
API.Open to any improvements or suggestions!