-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathone-to-one-character-mapping.py
55 lines (39 loc) · 1.33 KB
/
one-to-one-character-mapping.py
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
"""
#176
Bloomberg
Determine whether there exists a one-to-one character mapping from one string s1 to another s2.
For example, given s1 = abc and s2 = bcd, return true since we can map a to b, b to c, and c to d.
Given s1 = foo and s2 = bar, return false since the o cannot map to two characters.
"""
def formCharCountMap(s):
charCountMap = dict()
for letter in s:
if letter in charCountMap.keys():
charCountMap[letter] += 1
else:
charCountMap[letter] = 1
return charCountMap
def formInvertedCountMap(charCountMap):
invertedCountMap = dict()
for letter in charCountMap:
count = charCountMap[letter]
if count in invertedCountMap:
invertedCountMap[count] += 1
else:
invertedCountMap[count] = 0
return invertedCountMap
def oneToOneCharacterMapping(s1, s2):
s1CharCountMap = formCharCountMap(s1)
s2CharCountMap = formCharCountMap(s2)
s1InvertedCountMap = formInvertedCountMap(s1CharCountMap)
s2InvertedCountMap = formInvertedCountMap(s2CharCountMap)
return s1InvertedCountMap == s2InvertedCountMap
def main():
s1 = "abc"
s2 = "bcd"
print(oneToOneCharacterMapping(s1, s2))
s1 = "foo"
s2 = "bar"
print(oneToOneCharacterMapping(s1, s2))
if __name__ == "__main__":
main()