Skip to content

Latest commit

 

History

History
67 lines (44 loc) · 1.08 KB

File metadata and controls

67 lines (44 loc) · 1.08 KB

Strings

A place for implementation of string algorithms

Features

  • 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

Anagram

  • Functions and their uses
.. automodule:: pygorithm.strings.anagram
   :members:

Isogram

  • Functions and their uses
.. automodule:: pygorithm.strings.isogram
   :members:

Palindrome

  • Functions and their uses
.. automodule:: pygorithm.strings.palindrome
   :members:

Pangram

  • Functions and their uses
.. automodule:: pygorithm.strings.pangram
   :members:

Manacher's Algorithm

  • Functions and their uses
.. automodule:: pygorithm.strings.manacher_algorithm
   :members: