forked from thundergolfer/interview-with-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanagram-detection.py
More file actions
70 lines (66 loc) · 1.16 KB
/
anagram-detection.py
File metadata and controls
70 lines (66 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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