This website requires JavaScript.
Explore
Help
Register
Sign In
Rooba
/
rq
mirror of
https://github.com/rq/rq.git
Watch
1
Star
1
Fork
You've already forked rq
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
50d8d72928
rq
/
examples
/
fib.py
6 lines
104 B
Python
Raw
Blame
History
def
slow_fib
(
n
)
:
if
n
<
=
1
:
return
1
else
:
return
slow_fib
(
n
-
1
)
+
slow_fib
(
n
-
2
)
Reference in New Issue
View Git Blame
Copy Permalink