diff --git a/resources/koans.clj b/resources/koans.clj index c1c6e93..3b36e3f 100644 --- a/resources/koans.clj +++ b/resources/koans.clj @@ -55,7 +55,7 @@ "February" 1 "January" 2006 2010 2014 - "Vancouver"]}] + "Sochi" "Torino" "Vancouver"]}] ["06_functions" {"__" [81 20 diff --git a/src/koans/05_maps.clj b/src/koans/05_maps.clj index d6102c0..4e3825a 100644 --- a/src/koans/05_maps.clj +++ b/src/koans/05_maps.clj @@ -40,8 +40,8 @@ "Often you will need to get the keys, but the order is undependable" (= (list __ __ __) - (sort (keys {2006 "Torino" 2010 "Vancouver" 2014 "Sochi"}))) + (sort (keys {2010 "Vancouver" 2006 "Torino" 2014 "Sochi"}))) "You can get the values in a similar way" - (= (list "Sochi" "Torino" __) + (= (list __ __ __) (sort (vals {2006 "Torino" 2010 "Vancouver" 2014 "Sochi"}))))