Skip to content

Commit a4fd4ba

Browse files
committed
Added docs for strings
1 parent de3569c commit a4fd4ba

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

docs/strings.rst

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)