Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woliveiras/733f244effb61e8655492d845bbd1c53 to your computer and use it in GitHub Desktop.
Save woliveiras/733f244effb61e8655492d845bbd1c53 to your computer and use it in GitHub Desktop.
(defn my-recursive-sum
([numbers] (my-recursive-sum 0 numbers))
([total numbers]
(if (empty? numbers)
total
(my-recursive-sum (+ (first numbers) total) (rest numbers)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment