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 de3569c commit a4fd4baCopy full SHA for a4fd4ba
docs/strings.rst
@@ -0,0 +1,35 @@
1
+=======
2
+Strings
3
4
+
5
+A place for implementation of string algorithms
6
7
+Features
8
+--------
9
10
+* To see all the available functions in a module, you can just type ``help()`` with the module name as argument. For example,
11
12
+.. code:: python
13
14
+ >>> from pygorithm import strings
15
+ >>> help(strings)
16
+ Help on package pygorithm.strings in pygorithm:
17
18
+ NAME
19
+ pygorithm.strings - Collection of string methods and functions
20
21
+ PACKAGE CONTENTS
22
+ anagram
23
+ isogram
24
+ manacher_algorithm
25
+ palindrome
26
+ pangram
27
28
29
+Anagram
30
+-----------
31
32
+* Functions and their uses
33
34
+.. automodule:: strings.anagram
35
+ :members:
0 commit comments