I need to make solution for reduce method using only SEQUENCES and Recursion
My solution:
(defn my-reduce [f acc xs] (when (seq xs) (cons (f acc (first