#25
Find the odd numbers
 

Difficulty:Easy
Topics:seqs


Write a function which returns only the odd numbers from a sequence.
test not run
(= (__ #{1 2 3 4 5}) '(1 3 5))
test not run
(= (__ [4 2 1 6]) '(1))
test not run
(= (__ [2 2 4 6]) '())
test not run
(= (__ [1 1 1 3]) '(1 1 1 3))


Code which fills in the blank: