-
Notifications
You must be signed in to change notification settings - Fork 0
/
Prbl242ValidAnagram.java
53 lines (49 loc) · 1.33 KB
/
Prbl242ValidAnagram.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//Given two strings s and t, return true if t is an anagram of s, and false othe
//rwise.
//
//
// Example 1:
// Input: s = "anagram", t = "nagaram"
//Output: true
// Example 2:
// Input: s = "rat", t = "car"
//Output: false
//
//
// Constraints:
//
//
// 1 <= s.length, t.length <= 5 * 104
// s and t consist of lowercase English letters.
//
//
//
// Follow up: What if the inputs contain Unicode characters? How would you adapt
// your solution to such a case?
// Related Topics Hash Table Sort
// 👍 2490 👎 162
package leetcode.editor.en;
//java: Valid Anagram
public class Prbl242ValidAnagram {
public static void main(String[] args) {
Solution solution = new Prbl242ValidAnagram().new Solution();
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public boolean isAnagram(String s, String t) {
if (s.length() != t.length()) return false;
int[] az = new int[26];
for (char c : s.toCharArray()) {
az[c - 'a']++;
}
for (char c : t.toCharArray()) {
az[c - 'a']--;
if (az[c - 'a'] < 0) {
return false;
}
}
return true;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}