-
-
Notifications
You must be signed in to change notification settings - Fork 616
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 prerequisites for practice exercises #1942
Changes from 3 commits
bc6b0aa
f2f200a
0f67d36
64a461d
fda096f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -703,7 +703,13 @@ | |
"name": "Perfect Numbers", | ||
"uuid": "c6691fd2-e10d-47df-acbf-3adeac5a2f89", | ||
"practices": [], | ||
"prerequisites": [], | ||
"prerequisites": [ | ||
"numbers", | ||
"arrays", | ||
"conditionals", | ||
"errors", | ||
"for-loops" | ||
], | ||
"difficulty": 3, | ||
"topics": ["arrays", "conditionals", "loops", "integers", "math"] | ||
}, | ||
|
@@ -721,7 +727,7 @@ | |
"name": "Luhn", | ||
"uuid": "28872cc9-f1ef-487f-9a79-6bf7983148bf", | ||
"practices": [], | ||
"prerequisites": [], | ||
"prerequisites": ["numbers", "conditionals", "array-transformations"], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here is my solution : https://exercism.org/tracks/javascript/exercises/luhn/solutions/TomPradat I haven't added "array-analysis" despite the fact that I personally use |
||
"difficulty": 4, | ||
"topics": ["conditionals", "loops", "integers", "strings"] | ||
}, | ||
|
@@ -739,7 +745,7 @@ | |
"name": "Grains", | ||
"uuid": "d003975a-9045-4f03-9ad9-c15db584dc13", | ||
"practices": [], | ||
"prerequisites": [], | ||
"prerequisites": ["conditionals", "errors", "numbers", "math"], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here is my solution : https://exercism.org/tracks/javascript/exercises/grains/solutions/TomPradat I'm not sure about errors, I added it because you need to throw errors in the exercise. Though that's the case of many practice exercises, and the errors concept is very advanced in the hierarchy, what do you think ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's the right choice because you must understand how errors work. We can re-evaluate later. |
||
"difficulty": 5, | ||
"topics": ["loops", "integers"] | ||
}, | ||
|
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.
Here is my solution : https://exercism.org/tracks/javascript/exercises/perfect-numbers/solutions/TomPradat