题目:2506.统计相似字符串对的数目

​​题目来源:

        leetcode题目,网址:2506. 统计相似字符串对的数目 - 力扣(LeetCode)

解题思路:

       使用哈希表记录相似字符串个数,然后遍历哈希表球的相似字符串对数。

解题代码:

class Solution {
    public int similarPairs(String[] words) {
        int res=0;
        Map map=new HashMap<>();
        for(String word:words){
            int temp=0;
            for(int i=0;i
 
  

总结:

        无官方题解。


你可能感兴趣的:(#,java,leetcode,java)