added palindromeCheck (#806)

* added readme

* added readme

* adding palindromeCheck

* adjusted README

Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
This commit is contained in:
liamlylehr
2022-01-23 15:42:43 -05:00
committed by GitHub
parent b4b511005b
commit ea28788ed8
4 changed files with 57 additions and 0 deletions

View File

@@ -102,6 +102,7 @@ a set of rules that precisely define a sequence of operations.
* `A` [Combination Sum](src/algorithms/sets/combination-sum) - find all combinations that form specific sum
* **Strings**
* `B` [Hamming Distance](src/algorithms/string/hamming-distance) - number of positions at which the symbols are different
* `B` [Palindrome Check](src/algorithms/string/palindrome-check) - is the string the same in reverse
* `A` [Levenshtein Distance](src/algorithms/string/levenshtein-distance) - minimum edit distance between two sequences
* `A` [KnuthMorrisPratt Algorithm](src/algorithms/string/knuth-morris-pratt) (KMP Algorithm) - substring search (pattern matching)
* `A` [Z Algorithm](src/algorithms/string/z-algorithm) - substring search (pattern matching)