Skip to content

Commit

Permalink
config.json: Add select topics (#476)
Browse files Browse the repository at this point in the history
While evaluating that a proposed hello-world exercise in #475 would
introduce Maybe into the track at the first exercise, I found myself
wondering what other exercises introduce Maybe. I decided to put this,
and select other topics, into the config.json file.

The topics selected are, largely, those that might affect a problem
ordering decision. They are topics that either require some effort to
grasp (so we should not put them too early) and/or are repetitive (so we
should not place them too close together).

* Maybe
* Either
* Lazy evaluation
* Define a data type
* Library reimplementation
* Refactoring
* Accumulator-strictness
* instance TC (where TC is any typeclass other than Eq or Show)
* IO Monad
  * Random
  * Mutable state

Closes #274.
  • Loading branch information
petertseng authored Jan 30, 2017
1 parent 8f1ccb1 commit 10f3ad6
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"slug": "rna-transcription",
"difficulty": 1,
"topics": [
"Maybe"
]
},
{
Expand All @@ -50,24 +51,28 @@
"slug": "grains",
"difficulty": 2,
"topics": [
"Maybe"
]
},
{
"slug": "hamming",
"difficulty": 2,
"topics": [
"Maybe"
]
},
{
"slug": "nucleotide-count",
"difficulty": 2,
"topics": [
"Either"
]
},
{
"slug": "grade-school",
"difficulty": 2,
"topics": [
"Define type"
]
},
{
Expand All @@ -86,24 +91,30 @@
"slug": "accumulate",
"difficulty": 3,
"topics": [
"Lazy evaluation",
"Library reimplementation"
]
},
{
"slug": "strain",
"difficulty": 3,
"topics": [
"Lazy evaluation",
"Library reimplementation"
]
},
{
"slug": "phone-number",
"difficulty": 3,
"topics": [
"Maybe"
]
},
{
"slug": "beer-song",
"difficulty": 3,
"topics": [
"Refactoring"
]
},
{
Expand All @@ -128,12 +139,14 @@
"slug": "robot-simulator",
"difficulty": 3,
"topics": [
"Define type"
]
},
{
"slug": "secret-handshake",
"difficulty": 3,
"topics": [
"instance custom"
]
},
{
Expand All @@ -146,12 +159,16 @@
"slug": "simple-linked-list",
"difficulty": 4,
"topics": [
"Define type",
"Library reimplementation"
]
},
{
"slug": "list-ops",
"difficulty": 4,
"topics": [
"Accumulator-strictness",
"Library reimplementation"
]
},
{
Expand All @@ -164,6 +181,7 @@
"slug": "roman-numerals",
"difficulty": 4,
"topics": [
"Maybe"
]
},
{
Expand All @@ -182,30 +200,36 @@
"slug": "all-your-base",
"difficulty": 4,
"topics": [
"Maybe"
]
},
{
"slug": "largest-series-product",
"difficulty": 4,
"topics": [
"Maybe"
]
},
{
"slug": "clock",
"difficulty": 4,
"topics": [
"Define type",
"instance Num"
]
},
{
"slug": "matrix",
"difficulty": 4,
"topics": [
"Define type"
]
},
{
"slug": "house",
"difficulty": 4,
"topics": [
"Refactoring"
]
},
{
Expand Down Expand Up @@ -254,6 +278,7 @@
"slug": "nth-prime",
"difficulty": 5,
"topics": [
"Maybe"
]
},
{
Expand All @@ -266,6 +291,8 @@
"slug": "binary-search-tree",
"difficulty": 5,
"topics": [
"Define type",
"Maybe"
]
},
{
Expand All @@ -278,6 +305,7 @@
"slug": "queen-attack",
"difficulty": 5,
"topics": [
"Maybe"
]
},
{
Expand All @@ -290,12 +318,15 @@
"slug": "food-chain",
"difficulty": 5,
"topics": [
"Refactoring"
]
},
{
"slug": "custom-set",
"difficulty": 5,
"topics": [
"Define type",
"Library reimplementation"
]
},
{
Expand All @@ -308,6 +339,9 @@
"slug": "simple-cipher",
"difficulty": 6,
"topics": [
"IO monad",
"Random",
"Mutable state"
]
},
{
Expand All @@ -320,6 +354,9 @@
"slug": "robot-name",
"difficulty": 6,
"topics": [
"Define type",
"IO monad",
"Random"
]
},
{
Expand All @@ -332,12 +369,17 @@
"slug": "say",
"difficulty": 6,
"topics": [
"Maybe"
]
},
{
"slug": "bank-account",
"difficulty": 6,
"topics": [
"Define type",
"IO monad",
"Maybe",
"Mutable state"
]
},
{
Expand All @@ -350,6 +392,11 @@
"slug": "linked-list",
"difficulty": 6,
"topics": [
"Define type",
"IO monad",
"Library reimplementation",
"Maybe",
"Mutable state"
]
},
{
Expand All @@ -368,48 +415,56 @@
"slug": "wordy",
"difficulty": 7,
"topics": [
"Maybe"
]
},
{
"slug": "change",
"difficulty": 7,
"topics": [
"Maybe"
]
},
{
"slug": "alphametics",
"difficulty": 7,
"topics": [
"Maybe"
]
},
{
"slug": "bowling",
"difficulty": 7,
"topics": [
"Either"
]
},
{
"slug": "connect",
"difficulty": 8,
"topics": [
"Maybe"
]
},
{
"slug": "dominoes",
"difficulty": 8,
"topics": [
"Maybe"
]
},
{
"slug": "sgf-parsing",
"difficulty": 9,
"topics": [
"Maybe"
]
},
{
"slug": "go-counting",
"difficulty": 9,
"topics": [
"Maybe"
]
},
{
Expand All @@ -422,18 +477,23 @@
"slug": "zipper",
"difficulty": 10,
"topics": [
"Define type",
"Maybe"
]
},
{
"slug": "forth",
"difficulty": 10,
"topics": [
"Define type",
"Either"
]
},
{
"slug": "pov",
"difficulty": 10,
"topics": [
"Maybe"
]
}
],
Expand Down

0 comments on commit 10f3ad6

Please sign in to comment.