#65
Black Box Testing
 

Difficulty:Medium
Topics:seqs testing


Clojure has many collection types, which act in subtly different ways. The core functions typically convert them into a uniform "sequence" type and work with them that way, but it can be important to understand the behavioral and performance differences so that you know which kind is appropriate for your application. Write a function which takes a collection and returns one of: map, :set, :list, or :vector - describing the type of collection it was given. You won't be allowed to inspect their class or use the built-in predicates like list? - the point is to poke at them and understand their behavior.
test not run
(= :map (__ {:a 1, :b 2}))
test not run
(= :list (__ (range (rand-int 20))))
test not run
(= :vector (__ [1 2 3 4 5 6]))
test not run
(= :set (__ #{10 (rand-int 5)}))
test not run
(= [:map :set :vector :list] (map __ [{} #{} [] ()]))
Special Restrictions
  • class
  • type
  • Class
  • vector?
  • sequential?
  • list?
  • seq?
  • map?
  • set?
  • instance?
  • getClass


  • Code which fills in the blank: