This website works better with JavaScript.
Explore
Help
Sign In
util
/
rq
mirror of
https://github.com/peter4431/rq.git
Watch
4
Star
0
Fork
You've already forked rq
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
074af72536
main
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '074af72536'
${ noResults }
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