242. Valid Anagram

使用 Set> entrySet 会比使用 keySet快不少。

因为这里是有小写的字母 从性能考虑也可以手写hashtable

class Solution {
    public boolean isAnagram(String s, String t) {
        HashMap map = new HashMap<>();
        for(int i = 0 ;i> entry = map.entrySet();
        for(Map.Entry e: entry)
        {
            int val = e.getValue();
            if(val!=0)
                return false;
        }
        return true;
    }
}

你可能感兴趣的:(242. Valid Anagram)