Guest User

Untitled

a guest
Jun 29th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; bad idea
  2. (defn stack-consuming-fibo [n]
  3.     (cond
  4.         (= n 0) 0
  5.         (= n 1) 1
  6.         :else (+ (stack-consuming-fibo (- n 1))
  7.             (stack-consuming-fibo (- n 2)))))
Add Comment
Please, Sign In to add comment