-
-
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 #1964
Changes from 3 commits
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 |
---|---|---|
|
@@ -824,7 +824,12 @@ | |
"name": "Matching Brackets", | ||
"uuid": "4d456646-3a9b-4393-9558-6b30e5c1039c", | ||
"practices": [], | ||
"prerequisites": [], | ||
"prerequisites": [ | ||
"strings", | ||
"arrays", | ||
"conditionals-switch", | ||
"for-loops" | ||
], | ||
"difficulty": 3, | ||
"topics": [ | ||
"conditionals", | ||
|
@@ -862,7 +867,14 @@ | |
"name": "Series", | ||
"uuid": "5178ae53-5364-46c9-bee3-70e6e8a8c2e3", | ||
"practices": [], | ||
"prerequisites": [], | ||
"prerequisites": [ | ||
"arrays", | ||
"strings", | ||
"errors", | ||
"classes", | ||
"conditionals", | ||
"array-transformations" | ||
], | ||
Comment on lines
+870
to
+877
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/series/solutions/TomPradat |
||
"difficulty": 3, | ||
"topics": ["loops", "exception_handling", "strings", "text_formatting"] | ||
}, | ||
|
@@ -904,7 +916,13 @@ | |
"name": "Grep", | ||
"uuid": "78bcbae1-a0f2-460c-ba89-e51844fe9397", | ||
"practices": [], | ||
"prerequisites": [], | ||
"prerequisites": [ | ||
"arrays", | ||
"strings", | ||
"for-loops", | ||
"array-analysis", | ||
"template-strings" | ||
], | ||
Comment on lines
+919
to
+925
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/grep/solutions/TomPradat |
||
"difficulty": 4, | ||
"topics": ["files", "searching", "text_formatting"] | ||
}, | ||
|
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/matching-brackets/solutions/TomPradat
I've seen many solutions with conditional switches and I prefer it to regexps ones. Also I've added arrays because I think this is good exercise for 'stack' type solutions