1657. 确定两个字符串是否接近
1657. 确定两个字符串是否接近
- 难度:
medium
- 原始链接: https://leetcode.cn/problems/determine-if-two-strings-are-close
- 标签:
哈希计数
解法一: 哈希计数
1 | func closeStrings(word1 string, word2 string) bool { |
medium
哈希计数
1 | func closeStrings(word1 string, word2 string) bool { |