跳到主要内容

1657.确定两个字符串是否接近

链接:1657.确定两个字符串是否接近
难度:Medium
标签:哈希表、字符串、计数、排序
简介:给你两个字符串,word1 和 word2 。如果 word1 和 word2 接近 ,就返回 true ;否则,返回 false 。

题解 1 - python

  • 编辑时间:2023-11-30
  • 执行用时:128ms
  • 内存消耗:16.86MB
  • 编程语言:python
  • 解法介绍:排序。
class Solution:
def closeStrings(self, word1: str, word2: str) -> bool:
c1 = Counter(word1)
c2 = Counter(word2)
return sorted(c1.keys()) == sorted(c2.keys()) and sorted(c1.values()) == sorted(c2.values())