#47
Contain Yourself
 

Difficulty:Easy
Topics:


The contains? function checks if a KEY is present in a given collection. This often leads beginner clojurians to use it incorrectly with numerically indexed collections like vectors and lists.
test not run
(contains? #{4 5 6} __)
test not run
(contains? [1 1 1 1 1] __)
test not run
(contains? {4 :a 2 :b} __)
test not run
(not (contains? [1 2 4] __))


Code which fills in the blank: