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.
python-gjk/11/fibonacci_rekurze.md

183 B

fibonacci_rekurze.py

# tahle vypada fibonacciho posloupnost :
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ... # atd
# zacneme matematickou definici :
#f(0) = 0
#f(1) = 1