-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path242_valid_anagram.java
More file actions
45 lines (34 loc) · 1001 Bytes
/
242_valid_anagram.java
File metadata and controls
45 lines (34 loc) · 1001 Bytes
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
/*
Given two strings s and t , write a function to determine if t is an anagram of s.
Example 1:
Input: s = "anagram", t = "nagaram"
Output: true
Example 2:
Input: s = "rat", t = "car"
Output: false
Note:
You may assume the string contains only lowercase alphabets.
Follow up:
What if the inputs contain unicode characters? How would you adapt your solution to such case?
*/
class Solution {
public boolean isAnagram(String s, String t) {
if (s.equals(t)) {
return true;
}
if (s.length() != t.length()) {
return false;
}
int[] num_char = new int[26];
for (int i = 0;i < s.length();i ++) {
num_char[s.charAt(i) - 'a'] ++;
}
for (int i = 0;i < t.length();i ++) {
num_char[t.charAt(i) - 'a'] --;
if (num_char[t.charAt(i) - 'a'] < 0) {
return false;
}
}
return true;
}
}