fork download
  1. (println
  2. (map
  3. #(apply str((group-by(set %)"ABC")nil))
  4. ["", "A", "B", "C", "AB", "AC", "BA", "BC", "CA", "CB", "ABC", "BAC"]
  5. )
  6. ); your code goes here
Success #stdin #stdout 0.98s 4386816KB
stdin
Standard input is empty
stdout
(ABC BC AC AB C B C A B A  )