So, I\'m trying to work my way through Brave Clojure. The third exercise consists on creating a map function but instead of returning a list it should return a set. OK, so there
Sets are by default unordered. Therefore your results are fine, they contain the right elements. In general order is not important for sets.