We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c7bd270 + eaf6cd6 commit aec2d28Copy full SHA for aec2d28
src/koans/05_maps.clj
@@ -33,7 +33,7 @@
33
(= __ (contains? {:a nil :b nil} :c))
34
35
"Maps are immutable, but you can create a new and improved version"
36
- (= {1 "January" 2 __} (assoc {1 "January" } 2 "February"))
+ (= {1 "January" 2 __} (assoc {1 "January"} 2 "February"))
37
38
"You can also create a new version with an entry removed"
39
(= {__ __} (dissoc {1 "January" 2 "February"} 2))
0 commit comments