242. 有效的字母异位词
https://leetcode.cn/problems/valid-anagram/description/
public boolean isAnagram(String s, String t) {
char[] sChar = s.toCharArray();
char[] tChar = t.toCharArray();
Arrays.sort(sChar);
Arrays.sort(tChar);
if (Arrays.equals(sChar,tChar)){
return true;
}else {
return false;
}
}
总结:两个思路:1、字符串转成char数组之后排序,如果排序后一样,则为字母异位词。2、维护一个26大小的数组用来存每个字母出现的数量,若两个字符串字母出现的数量一致,则为字母异位词
349. 两个数组的交集
https://leetcode.cn/problems/intersection-of-two-arrays/description/