File tree 4 files changed +23
-4
lines changed
4 files changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ have any questions or want more direction before you start pitching in.
119
119
- Alex Robbins
120
120
- Jaskirat Singh Veen
121
121
- Mark Simpson
122
+ - Mike Jansen
122
123
123
124
124
125
### Credits
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ Pre and Post conditions of functions
19
19
Particular Functions
20
20
=====
21
21
vector-of
22
- case
23
22
flatten
24
23
frequencies
25
24
group-by
Original file line number Diff line number Diff line change
1
+ (defn explain-defcon-level [exercise-term]
2
+ (case exercise-term
3
+ :fade-out :you-and-what-army
4
+ :double-take :call-me-when-its-important
5
+ :round-house :o-rly
6
+ :fast-pace :thats-pretty-bad
7
+ :cocked-pistol :sirens
8
+ :say-what? ))
9
+
1
10
(meditations
2
11
" You will face many decisions"
3
12
(= __ (if (false ? (= 4 5 ))
8
17
(= __ (if (> 4 3 )
9
18
[]))
10
19
11
- " And in such a case you may have nothing"
20
+ " And in such a situation you may have nothing"
12
21
(= nil (if (nil? __)
13
22
[:a :b :c ]))
14
23
26
35
" Or your fate may be sealed"
27
36
(= __ (if-not (zero? __)
28
37
'doom
29
- 'doom)))
38
+ 'doom))
39
+
40
+ " In case of emergency, sound the alarms"
41
+ (= :sirens
42
+ (explain-defcon-level __))
43
+
44
+ " But admit it when you don't know what to do"
45
+ (= __
46
+ (explain-defcon-level :yo-mama )))
30
47
Original file line number Diff line number Diff line change 70
70
0
71
71
:glory
72
72
4 6 :your_road
73
- ''doom 0 ]}
73
+ ''doom 0
74
+ :cocked-pistol
75
+ :say-what? ]}
74
76
75
77
" higher_order_functions" {" __" [4 8 12
76
78
'(* x x)
You can’t perform that action at this time.
0 commit comments