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
最后編輯于 :
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
- 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發上,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...
推薦閱讀更多精彩內容
- GitHub:https://github.com/BadWaka/leet-code-waka 思路 新建四個數...
- 1.描述 Given two strings s and t, determine if they are iso...
- Given two strings s and t, determine if they are isomorph...
- 一、題目 二、解題 輸入:兩個字符串輸出:判斷是否可以被完整替換(即相同字母的位置一樣,且一一對應) 使用字典儲存...
- Given two strings s and t, determine if they are isomorph...