-
Notifications
You must be signed in to change notification settings - Fork 0
/
05_maps.clj
50 lines (35 loc) · 1.5 KB
/
05_maps.clj
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
(ns koans.05-maps
(:require [koan-engine.core :refer :all]))
(meditations
"Don't get lost when creating a map"
(= {:a 1 :b 2} (hash-map :a 1 :b 2))
"A value must be supplied for each key"
(= {:a 1} (hash-map :a 1))
"The size is the number of entries"
(= 2 (count {:a 1 :b 2}))
"You can look up the value for a given key"
(= 2 (get {:a 1 :b 2} :b))
"Maps can be used as functions to do lookups"
(= 1 ({:a 1 :b 2} :a))
"And so can keywords"
(= 1 (:a {:a 1 :b 2}))
"But map keys need not be keywords"
(= "Sochi" ({2010 "Vancouver" 2014 "Sochi" 2018 "PyeongChang"} 2014))
"You may not be able to find an entry for a key"
(= nil (get {:a 1 :b 2} :c))
"But you can provide your own default"
(= :key-not-found (get {:a 1 :b 2} :c :key-not-found))
"You can find out if a key is present"
(= true (contains? {:a nil :b nil} :b))
"Or if it is missing"
(= false (contains? {:a nil :b nil} :c))
"Maps are immutable, but you can create a new and improved version"
(= {1 "January" 2 "February"} (assoc {1 "January"} 2 "February"))
"You can also create a new version with an entry removed"
(= {1 "January"} (dissoc {1 "January" 2 "February"} 2))
"Often you will need to get the keys, but the order is undependable"
(= (list 2010 2014 2018)
(sort (keys { 2014 "Sochi" 2018 "PyeongChang" 2010 "Vancouver"})))
"You can get the values in a similar way"
(= (list "PyeongChang" "Sochi" "Vancouver")
(sort (vals {2010 "Vancouver" 2014 "Sochi" 2018 "PyeongChang"}))))