49. Group Anagrams(字母异位词分组)

题目链接:https://leetcode.com/problems/group-anagrams/

主要是调用了几个JavaAPI,没啥难点。

AC 12ms beats 98% Java:

class Solution {
    public List> groupAnagrams(String[] strs) {
        if(strs==null||strs.length==0)
            return null;
        HashMap> map=new HashMap();
        for(int i=0;i());
            }
            map.get(key).add(str);
        }
        return new ArrayList(map.values());
    }
}

 

你可能感兴趣的:(Leetcode)