#344
Thou shall not pass
 

Difficulty:Basic
Topics:Vector and List


Mission: Bikin function yang cek apakah semua elemen dalam list/vector memenuhi suatu kondisi.
test not run
(= (__ even? [2 4 6 8]) true)
test not run
(= (__ #(> % 5) [6 7 8 9]) true)
test not run
(= (__ odd? [1 2 3 4 5]) false)


Code which fills in the blank: