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.
|
# fibonacci_rekurze.py
|
|
```python
|
|
# 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
|
|
|
|
``` |