Skip to content

Commit

Permalink
Reorder core exercises for better student and mentor experience. (#269)
Browse files Browse the repository at this point in the history
Updated config.json with a new ordering of core exercises.  Brought
some new core exercises in as well.

New order:

1. Hello World - Same as before
2. Two-Fer - Upgraded from Side to Core
3. Error Handling - Upgraded from Side to Core
4. Raindrops - Upgraded from Side to Core
5. Hamming - Previous Core, moved earlier in track
6. Acronym - Upgraded from Side to Core
7. Armstrong Numbers - Previous Core, moved later in track
8. Pangram - Same as before
9. Bob - Same as before
10. Scrabble Score - Upgraded from Side to Core
11. Grains - Previous Core, moved much later in track
12. Luhn - Same as before
13. Atbash Cypher - Same as before

Fixes #268.
  • Loading branch information
rpalo authored and budmc29 committed Jan 15, 2019
1 parent 5acb67d commit c9d7c00
Showing 1 changed file with 78 additions and 78 deletions.
156 changes: 78 additions & 78 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,11 @@
"strings"
]
},
{
"slug": "reverse-string",
"uuid": "2b6d4faa-1909-422a-8eac-1682be3f1b9e",
"core": false,
"unlocked_by": "hello-world",
"difficulty": 1,
"topics": [
"strings"
]
},
{
"slug": "two-fer",
"uuid": "0cfac255-6871-4588-a16b-98f7692bfdbe",
"core": false,
"unlocked_by": "hello-world",
"core": true,
"unlocked_by": null,
"difficulty": 1,
"topics": [
"control_flow_conditionals",
Expand All @@ -37,27 +27,50 @@
]
},
{
"slug": "grains",
"uuid": "c9d36155-10e8-4a75-a732-3c43a68910eb",
"slug": "error-handling",
"uuid": "b2b4ee35-108f-45ce-b294-c10d332e5579",
"core": true,
"unlocked_by": null,
"difficulty": 2,
"topics": [
"error_handling",
"input_validation",
"strings"
]
},
{
"slug": "raindrops",
"uuid": "1a9c8d65-43ee-435e-8c55-9a45c14a71fb",
"core": true,
"unlocked_by": null,
"difficulty": 2,
"topics": [
"control_flow_conditionals",
"input_validation",
"integers",
"math"
"strings"
]
},
{
"slug": "scrabble-score",
"uuid": "8ecb5793-2dd8-44be-9188-61e52723cbab",
"core": false,
"unlocked_by": "grains",
"slug": "hamming",
"uuid": "68103f44-b442-48e6-b2b5-09001f73e926",
"core": true,
"unlocked_by": null,
"difficulty": 2,
"topics": [
"games",
"integers"
"control_flow_loops",
"string_comparison"
]
},
{
"slug": "acronym",
"uuid": "5812c10a-aee1-11e7-add7-ef139384f6eb",
"core": true,
"unlocked_by": null,
"difficulty": 3,
"topics": [
"input_validation",
"string_transformation",
"strings"
]
},
{
Expand All @@ -72,73 +85,83 @@
]
},
{
"slug": "difference-of-squares",
"uuid": "ca5139b4-8b2f-44ea-8d83-0b8ca7674436",
"core": false,
"unlocked_by": "armstrong-numbers",
"slug": "pangram",
"uuid": "a7e2018a-c454-4fe0-ad35-229304306648",
"core": true,
"unlocked_by": null,
"difficulty": 2,
"topics": [
"string_transformation",
"strings"
]
},
{
"slug": "bob",
"uuid": "9ac0b041-a7aa-4b0c-952a-d38d35e2cd65",
"core": true,
"unlocked_by": null,
"difficulty": 3,
"topics": [
"control_flow_conditionals",
"control_flow_loops",
"math"
"strings"
]
},
{
"slug": "error-handling",
"uuid": "b2b4ee35-108f-45ce-b294-c10d332e5579",
"core": false,
"unlocked_by": "hello-world",
"slug": "scrabble-score",
"uuid": "8ecb5793-2dd8-44be-9188-61e52723cbab",
"core": true,
"unlocked_by": null,
"difficulty": 2,
"topics": [
"error_handling",
"input_validation",
"strings"
"games",
"integers"
]
},
{
"slug": "hamming",
"uuid": "68103f44-b442-48e6-b2b5-09001f73e926",
"slug": "grains",
"uuid": "c9d36155-10e8-4a75-a732-3c43a68910eb",
"core": true,
"unlocked_by": null,
"difficulty": 2,
"topics": [
"control_flow_loops",
"string_comparison"
"control_flow_conditionals",
"input_validation",
"integers",
"math"
]
},
{
"slug": "leap",
"uuid": "e24451fd-761d-4d20-81d9-e470486ec44a",
"slug": "reverse-string",
"uuid": "2b6d4faa-1909-422a-8eac-1682be3f1b9e",
"core": false,
"unlocked_by": "hello-world",
"difficulty": 2,
"difficulty": 1,
"topics": [
"boolean_logic",
"control_flow_conditionals",
"input_validation"
"strings"
]
},
{
"slug": "pangram",
"uuid": "a7e2018a-c454-4fe0-ad35-229304306648",
"core": true,
"unlocked_by": null,
"slug": "difference-of-squares",
"uuid": "ca5139b4-8b2f-44ea-8d83-0b8ca7674436",
"core": false,
"unlocked_by": "armstrong-numbers",
"difficulty": 2,
"topics": [
"string_transformation",
"strings"
"control_flow_conditionals",
"control_flow_loops",
"math"
]
},
{
"slug": "raindrops",
"uuid": "1a9c8d65-43ee-435e-8c55-9a45c14a71fb",
"slug": "leap",
"uuid": "e24451fd-761d-4d20-81d9-e470486ec44a",
"core": false,
"unlocked_by": "hello-world",
"difficulty": 2,
"topics": [
"boolean_logic",
"control_flow_conditionals",
"input_validation",
"strings"
"input_validation"
]
},
{
Expand All @@ -153,18 +176,6 @@
"error_handling"
]
},
{
"slug": "acronym",
"uuid": "5812c10a-aee1-11e7-add7-ef139384f6eb",
"core": false,
"unlocked_by": "pangram",
"difficulty": 3,
"topics": [
"input_validation",
"string_transformation",
"strings"
]
},
{
"slug": "anagram",
"uuid": "33d9eb48-5958-4e98-afc0-8cff89577c86",
Expand All @@ -178,17 +189,6 @@
"strings"
]
},
{
"slug": "bob",
"uuid": "9ac0b041-a7aa-4b0c-952a-d38d35e2cd65",
"core": true,
"unlocked_by": null,
"difficulty": 3,
"topics": [
"control_flow_conditionals",
"strings"
]
},
{
"slug": "collatz-conjecture",
"uuid": "b4793e6d-f443-41ea-8289-95e18a5dbef4",
Expand Down

0 comments on commit c9d7c00

Please sign in to comment.