class Solution(object):
def isIsomorphic(self, s, t):
"""
:type s: str
:type t: str
:rtype: bool
"""
sTable={}
tTable={}
for i in xrange(len(s)):
if s[i] not in sTable and t[i] not in tTable :
sTable[s[i]]=i
tTable[t[i]]=i
elif s[i] not in sTable or t[i] not in tTable:
return False
elif sTable[s[i]]!=tTable[t[i]]:
return False
return True
205. Isomorphic Strings
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。
相關(guān)閱讀更多精彩內(nèi)容
- GitHub:https://github.com/BadWaka/leet-code-waka 思路 新建四個數(shù)...
- 1.描述 Given two strings s and t, determine if they are iso...
- Given two strings s and t, determine if they are isomorph...
- 一、題目 二、解題 輸入:兩個字符串輸出:判斷是否可以被完整替換(即相同字母的位置一樣,且一一對應(yīng)) 使用字典儲存...
- Given two strings s and t, determine if they are isomorph...