#46
Flipping out
 

Difficulty:Medium
Topics:higher-order-functions


Write a higher-order function which flips the order of the arguments of an input function.
test not run
(= 3 ((__ nth) 2 [1 2 3 4 5]))
test not run
(= true ((__ >) 7 8))
test not run
(= 4 ((__ quot) 2 8))
test not run
(= [1 2 3] ((__ take) [1 2 3 4 5] 3))


Code which fills in the blank: