diff --git a/participants/scipy_009/doc/README.md b/participants/scipy_009/doc/README.md index a1542d9..830f59e 100644 --- a/participants/scipy_009/doc/README.md +++ b/participants/scipy_009/doc/README.md @@ -1,13 +1,17 @@ Ok so I guess you are reading this cuz you wanna use my code. There are some -functions that do stuf and thats: +functions that do stuff. + +The stuff is: + * Calculate a factorial + * Calculate come fiboncci numbers + + +### Factorial Example >>> from simple_functions import factorial >>> factorial(10) 9 - -and this other part does something. I forget why that I did it: - +### Fibonacci Example >>> fibonnaccci(100) [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] -If you can't use it, its kind of your problem, not mine!