Activity

  Dennis Hackethal commented on idea #3562.

Do you have examples of such algorithms?

#3562​·​Erik Orrje, about 2 months ago
clojure
(defn add [a b]
(if (zero? b)
a
(recur (inc a) (dec b))))