#158
Decurry
 

Difficulty:Medium
Topics:partial-functions


Write a function that accepts a curried function of unknown arity n. Return an equivalent function of n arguments.
test not run
(= 10 ((__ (fn [a]
                                (fn [b]
                                  (fn [c]
                                    (fn [d]
                                      (+ a b c d))))))
                          1 2 3 4))
test not run
(= 24 ((__ (fn [a]
                                (fn [b]
                                  (fn [c]
                                    (fn [d]
                                      (* a b c d))))))
                          1 2 3 4))
test not run
(= 25 ((__ (fn [a]
                                (fn [b]
                                  (* a b))))
                          5 5))


Code which fills in the blank: