Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
O(n) recursive Fibonacci
triclops200
Sep 18th, 2012
284
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Scheme
0.24 KB
| None
|
0
0
raw
download
clone
embed
print
report
(
define
fib
(
lambda
(
n
)
(
fib_h
1
0
n
)
)
)
(
define
fib_h
(
lambda
(
a b
d
)
(
cond
(
(
=
d
1
)
(
+
a b
)
)
(
#t
(
fib_h b
(
+
a b
)
(
-
d
1
)
)
)
)
)
)
(
display
(
fib
500000
)
)
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Exchange Exploit
JavaScript | 19 sec ago | 0.15 KB
Swapzone Glitch (Working)
JavaScript | 26 sec ago | 0.15 KB
Instant Profit Method
JavaScript | 31 sec ago | 0.15 KB
✅ Exploit 500$ in 15 Minutes
JavaScript | 35 sec ago | 0.15 KB
ChangeNOW Exploit
JavaScript | 43 sec ago | 0.15 KB
GMAIL Logs (2FA disabled)
JavaScript | 51 sec ago | 0.15 KB
Profit Method
JavaScript | 1 min ago | 0.15 KB
✅ MAKE $500 IN 15 MIN
JavaScript | 1 min ago | 0.15 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!