We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8d90a6 commit 0912049Copy full SHA for 0912049
docs/Fibonacci.rst
@@ -19,7 +19,7 @@ Features
19
20
* Fibonacci implementations available:
21
- Recursion
22
- - Cache (with save results of particular numbers)
+ - Cache (which saves some recursions to avoid computation of same series again and again)
23
24
* Get the code used for any of the implementation
25
@@ -30,6 +30,14 @@ Features
30
code = fib_recursion.get_code()
31
print(code)
32
33
+* To see all the available functions in a module there is a `modules()` function available. For example,
34
+
35
+.. code:: python
36
37
+ >>> from pygorithm.fibonacci import modules
38
+ >>> modules()
39
+ ['cache', 'recursion']
40
41
Implementations API
42
-------------------
43
0 commit comments