-
-
Notifications
You must be signed in to change notification settings - Fork 624
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 #1974
Changes from all commits
9e1ce69
480920e
246548c
118baee
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 |
---|---|---|
|
@@ -885,7 +885,12 @@ | |
"name": "Scale Generator", | ||
"uuid": "b9c586e8-998b-4f5d-ab98-a08be29a9f19", | ||
"practices": [], | ||
"prerequisites": [], | ||
"prerequisites": [ | ||
"classes", | ||
"arrays", | ||
"strings", | ||
"array-transformations" | ||
], | ||
"difficulty": 3, | ||
"topics": ["loops", "pattern_recognition", "strings", "arrays"] | ||
}, | ||
|
@@ -910,7 +915,13 @@ | |
"name": "Largest Series Product", | ||
"uuid": "1f84305d-ea76-4fe2-9858-3b53576d683d", | ||
"practices": [], | ||
"prerequisites": [], | ||
"prerequisites": [ | ||
"strings", | ||
"numbers", | ||
"errors", | ||
"conditionals", | ||
"array-transformations" | ||
], | ||
Comment on lines
+918
to
+924
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. |
||
"difficulty": 7, | ||
"topics": [ | ||
"conditionals", | ||
|
@@ -927,8 +938,8 @@ | |
"name": "Transpose", | ||
"uuid": "9c140fb7-cc8b-411b-b613-a0e0081a9c3f", | ||
"practices": [], | ||
"prerequisites": [], | ||
"difficulty": 1, | ||
"prerequisites": ["arrays", "for-loops", "strings", "conditionals"], | ||
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/transpose/solutions/TomPradat I'm kinda facing a dilemma here : Either we consider that we can solve this exercise like I did, i.e without Either ways, I'd recommend increasing the difficulty to 3 or 4. This exercise resembles matrix whose difficulty is 3. 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. Lets increase the difficulty and lets NOT add the array prereqs. If it's harder, people are bound to have more experience, so we'll see more people solving it your way. 3 is fine. 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. |
||
"difficulty": 3, | ||
"topics": [ | ||
"arrays", | ||
"lists", | ||
|
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.
My solution : https://exercism.org/tracks/javascript/exercises/scale-generator/solutions/TomPradat
I found mstange22's and the proof solution more concise and understandable so I filled the prerequisites according to these