-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathChapter4.purs
83 lines (77 loc) · 3.44 KB
/
Chapter4.purs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
module Levels.Chapter4 where
import Data.List (List(..), (:), partition, concat)
import Data.Maybe (Maybe(..))
import Helper (fromArray, (:->), (:>))
import ListHelper (contains)
import Transformer (replaceSingle)
import Types (Chapter, Transformer, Cube(..), Difficulty(..))
partitionContains :: Cube -> Transformer
partitionContains cube wall =
let parts = partition (contains cube) wall
in concat (parts.no : parts.yes : Nil)
chapter4 :: Chapter
chapter4 = {
name: "Chapter 4",
transformers: fromArray [
"replaceYbyR" :> {
name: "map {Yellow}↦{Red}",
function: replaceSingle Yellow Red
},
"replaceRbyC" :> {
name: "map {Red}↦{Cyan}",
function: replaceSingle Red Cyan
},
"replaceCbyY" :> {
name: "map {Cyan}↦{Yellow}",
function: replaceSingle Cyan Yellow
},
"partitionContainsC" :> {
name: "partition (contains {Cyan})",
function: partitionContains Cyan
},
"partitionContainsR" :> {
name: "partition (contains {Red})",
function: partitionContains Red
}
],
levels: fromArray [
"4.1" :-> {
name: "Take sides!",
help: Just """This chapter introduces partitioning. The function `partitionContainsR` reorders the columns
so that the columns which do not contain a red cube are grouped on the left, and the columns
which do are gouped on the right.""",
difficulty: Easy,
initial: [[Cyan, Red], [Cyan, Cyan], [Red, Red], [Cyan, Cyan], [Cyan, Red]],
target: [[Cyan, Cyan], [Cyan, Cyan], [Cyan, Red], [Red, Red], [Cyan, Red]]
},
"4.2" :-> {
name: "Take sides – again!",
help: Just """Note that within each partition – the columns which don't satisfy the condition and the
columns which do – the order remains the same as it was prior to partitioning.""",
difficulty: Medium,
initial: [[Cyan, Red], [Cyan, Cyan], [Red, Red], [Cyan, Cyan], [Cyan, Red]],
target: [[Cyan, Cyan], [Cyan, Cyan], [Red, Red], [Cyan, Red], [Cyan, Red]]
},
"4.3" :-> {
name: "Shift",
help: Just "Can you partition this?",
difficulty: Medium,
initial: [[Cyan, Red], [Red, Cyan], [Cyan, Red], [Red, Cyan], [Cyan, Red]],
target: [[Red, Cyan], [Cyan, Red], [Red, Cyan], [Cyan, Red], [Red, Cyan]]
},
"4.4" :-> {
name: "Robot eyes",
help: Nothing,
difficulty: Medium,
initial: [[Brown, Brown, Brown], [Brown, Yellow, Brown], [Brown, Brown, Brown], [Brown, Yellow, Brown], [Brown, Brown, Brown]],
target: [[Brown, Brown, Brown], [Brown, Brown, Brown], [Brown, Brown, Brown], [Brown, Yellow, Brown], [Brown, Yellow, Brown]]
},
"4.5" :-> {
name: "Mountains",
help: Nothing,
difficulty: Hard,
initial: [[Brown, Brown, Red, Red], [Brown, Brown, Brown, Cyan], [Brown, Yellow, Yellow, Yellow], [Brown, Brown, Brown, Red], [Brown, Brown, Cyan, Cyan], [Brown, Brown, Yellow, Yellow]],
target: [[Brown, Cyan, Cyan, Cyan], [Brown, Brown, Cyan, Cyan], [Brown, Brown, Cyan, Cyan], [Brown, Brown, Brown, Cyan], [Brown, Brown, Brown, Cyan], [Brown, Brown, Cyan, Cyan]]
}
]
}