A place for implementation of string algorithms
- To see all the available functions in a module, you can just type
help()with the module name as argument. For example,
>>> from pygorithm import strings
>>> help(strings)
Help on package pygorithm.strings in pygorithm:
NAME
pygorithm.strings - Collection of string methods and functions
PACKAGE CONTENTS
anagram
isogram
manacher_algorithm
palindrome
pangram- Functions and their uses
.. automodule:: pygorithm.strings.anagram :members:
- Functions and their uses
.. automodule:: pygorithm.strings.isogram :members:
- Functions and their uses
.. automodule:: pygorithm.strings.palindrome :members:
- Functions and their uses
.. automodule:: pygorithm.strings.pangram :members:
- Functions and their uses
.. automodule:: pygorithm.strings.manacher_algorithm :members: