-
Notifications
You must be signed in to change notification settings - Fork 399
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
Exercises on dicts #161
Exercises on dicts #161
Conversation
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.
Nice!
exercises/dict/dict2.cairo
Outdated
|
||
|
||
|
||
fn multiply_element_by_10(ref a: Felt252Dict<u32>, n: usize) { |
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.
fn multiply_element_by_10(ref a: Felt252Dict<u32>, n: usize) { | |
fn multiply_element_by_10(ref dict: Felt252Dict<u32>, n: usize) { |
a
is not a very meaningful variable name
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.
Looks great, Thanks!!
Thanks for pushing for this @chachaleo |
Resolves: #66
I created 3 exercises about the Felt252Dict data type