-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring_isomorphism.py
48 lines (44 loc) · 1.32 KB
/
string_isomorphism.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
'''
Given lowercase alphabet strings s,
and t return whether you can create a 1-to-1 mapping for
each letter in s to another letter (could be the same letter) such
that s could be mapped to t, with the ordering of characters preserved.
'''
class Solution:
def solve(self, s, t):
return s.translate(str.maketrans(s, t)) == t and len(set(s)) == len(set(t))
-----------------------------------
class Solution:
def solve(self, s, t):
ds, dt = {}, {}
for i in range(len(s)):
if s[i] not in ds:
ds[s[i]] = t[i]
else:
if ds[s[i]] != t[i]:
return False
if t[i] not in dt:
dt[t[i]] = s[i]
else:
if dt[t[i]] != s[i]:
return False
return True
-------------------------------------------------
class Solution:
def solve(self, s, t):
i = 0
s_map = {}
t_map = {}
while i < len(s):
sc = s[i]
tc = t[i]
if sc in s_map:
if s_map[sc] != tc:
return False
if tc in t_map:
if t_map[tc] != sc:
return False
s_map[sc] = tc
t_map[tc] = sc
i += 1
return True