Isomorphic Strings(205)
Easy - String
class Solution:
def isIsomorphic(self, s: str, t: str) -> bool:
# intuition -> using dictionary
dic = {} # s : t 치환관계 맵핑
check = [] # t가 치환된적 있는지 확인
sList = list(s)
tList = list(t)
for i in range(len(sList)):
if sList[i] not in dic and check.count(tList[i]) == 0:
# s, t가 각각 dic, check에 없는 경우
dic[sList[i]] = tList[i]
check.append(tList[i])
elif sList[i] not in dic and check.count(tList[i]) == 1:
# s는 dic에 없는데 해당 문자가 이미 check에 있을때 s = "badc", t = "baba"
return False
elif sList[i] in dic and dic[sList[i]] != tList[i]:
# s가 dic에 등록됐는데 해당 문자가 안나올때 s = "foo", t = "bar"
return False
return True
Author And Source
이 문제에 관하여(Isomorphic Strings(205)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@skkfea07/LeetCode-Isomorphic-Strings205저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)