Skip to content
This repository was archived by the owner on Dec 12, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions anagram-detection/anagram-detection.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Simple function that will take a string of latin characters and return a unique hash
def hashString(str):
# Map characters to prime numbers to multiply
charMap = {
'a': 2,
'b': 3,
'c': 5,
'd': 7,
'e': 11,
'f': 13,
'g': 17,
'h': 19,
'i': 23,
'j': 29,
'k': 31,
'l': 37,
'm': 41,
'n': 43,
'o': 47,
'p': 53,
'q': 59,
'r': 61,
's': 67,
't': 71,
'u': 73,
'v': 79,
'w': 83,
'x': 89,
'y': 97,
'z': 101,
'A': 103,
'B': 107,
'C': 109,
'D': 113,
'E': 127,
'F': 131,
'G': 137,
'H': 139,
'I': 149,
'J': 151,
'K': 163,
'L': 167,
'M': 173,
'N': 179,
'O': 181,
'P': 191,
'Q': 193,
'R': 197,
'S': 199,
'T': 211,
'U': 223,
'V': 227,
'W': 229,
'X': 233,
'Y': 239,
'Z': 241
}

return reduce(lambda memo, char: memo * charMap[char], list(str), 1);

def anagramDetection(parent, child):
length = len(child)
anagram = hashString(child)
total = 0

for i in range(0, len(parent) - length):
if hashString(parent[i: i + length]) == anagram:
total = total + 1

return total