#347
Segregation FTW
 

Difficulty:Easy
Topics:Further list and vector functions


Mission: Bikin function yang mengelompokkan elemen berdasarkan fungsi pengelompokkan yang diberikan, dan menghitung jumlah kemunculan tiap kelompok.
test not run
(= (__ even? [1 2 3 4 5 6 7 8]) {false 4, true 4})
test not run
(= (__ #(>= % 5) [2 3 5 7 11]) {false 2, true 3})
test not run
(= (__ zero? [0 1 0 2 0 3 0]) {false 3, true 4})


Code which fills in the blank: