Skip to content

Instantly share code, notes, and snippets.

@kouddy
Last active August 29, 2015 14:15
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 kouddy/8301bc0737a5b546c33f to your computer and use it in GitHub Desktop.
Save kouddy/8301bc0737a5b546c33f to your computer and use it in GitHub Desktop.
(define (f n)
(if (< n 3)
n
(+ (f (- n 1))
(* 2 (f (- n 2)))
(* 3 (f (- n 3))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment