From f60275e6e482b4a05ff2ec79526502fd7a33cf5e Mon Sep 17 00:00:00 2001 From: Laura Brown Date: Mon, 2 Sep 2013 20:12:29 -0400 Subject: [PATCH] Update 05_maps.clj "Often you will need to get the keys, but the order is undependable" The keys value pairs are already ordered by key. Why not make the original map un-ordered to force the user to think about sorting them? "You can get the values in a similar way" Two of the three values are already provided in the answer, the answer to this challenge can be arrived at by providing the missing one through process of elimination without thinking about sorting. --- src/koans/05_maps.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/koans/05_maps.clj b/src/koans/05_maps.clj index 08b3b2a..f17114a 100644 --- a/src/koans/05_maps.clj +++ b/src/koans/05_maps.clj @@ -43,5 +43,5 @@ (sort (keys {2010 "Vancouver" 2014 "Sochi" 2006 "Torino"}))) "You can get the values in a similar way" - (= (list "Sochi" "Torino" __) + (= (list __ __ __) (sort (vals {2006 "Torino" 2010 "Vancouver" 2014 "Sochi"}))))