摘要: 自己写的: class Solution: def isIsomorphic(self, s: str, t: str) -> bool: # 使用 match 函数分别检查 s 到 t 和 t 到 s 的映射关系 res_a = self.match(s, t) res_b = self.matc 阅读全文
posted @ 2024-03-09 21:47 Junior_bond 阅读(21) 评论(0) 推荐(0)