#279
higher-order-functions-9
 

Difficulty:Basic
Topics:functions


Numbers are not the only things one can reduce
test not run
(= "longest" (reduce (fn [a b]
                           (if (< __) b a))
                         ["which" "is" "the" "longest" "word"]))


Code which fills in the blank: