zoukankan      html  css  js  c++  java
  • 【leetcode 简单】 第五十九题 同构字符串

    给定两个字符串 和 t,判断它们是否是同构的。

    如果 中的字符可以被替换得到 ,那么这两个字符串是同构的。

    所有出现的字符都必须用另一个字符替换,同时保留字符的顺序。两个字符不能映射到同一个字符上,但字符可以映射自己本身。

    示例 1:

    输入: s = "egg", t = "add"
    输出: true
    

    示例 2:

    输入: s = "foo", t = "bar"
    输出: false

    示例 3:

    输入: s = "paper", t = "title"
    输出: true

    说明:
    你可以假设 t 具有相同的长度。

     
    class Solution:
        def isIsomorphic(self, s, t):
            """
            :type s: str
            :type t: str
            :rtype: bool
            """
            a = {}
            if len(set(s)) != len(set(t)):
                return False
            for i in range(len(s)):
                if s[i] not in a:
                    a[s[i]] = t[i]
                else:
                    if a[s[i]] != t[i]:
                        return False
                return True
    class Solution:
        def isIsomorphic(self, s, t):
            """
            :type s: str
            :type t: str
            :rtype: bool
            """
            return len(set(zip(s,t))) == len(set(s)) == len(set(t))
  • 相关阅读:
    malloc和new的区别
    Http协议解析
    Linux基础命令-history
    Linux基础命令-last
    Linux基础命令-who
    Linux基础命令-free
    Linux基础命令-uptime
    Linux基础命令-uname
    Linux基础命令-ifconfig
    Linux基础命令-killall
  • 原文地址:https://www.cnblogs.com/flashBoxer/p/9521282.html
Copyright © 2011-2022 走看看