-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIsanagram.java
More file actions
54 lines (42 loc) · 1.02 KB
/
Copy pathIsanagram.java
File metadata and controls
54 lines (42 loc) · 1.02 KB
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
54
/*242. Valid Anagram
Solved
Easy
Topics
premium lock icon
Companies
Given two strings s and t, return true if t is an anagram of s, and false otherwise.
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. */
class Solution {
public boolean isAnagram(String s, String t) {
if(s.length() != t.length())
{
return false;
}
HashMap<Character, Integer> map = new HashMap<>();
for(int i = 0; i < s.length(); i++)
{
char c = s.charAt(i);
map.put(c, map.getOrDefault(c, 0) + 1);
}
for(int i = 0; i < t.length(); i++)
{
char c = t.charAt(i);
if(!map.containsKey(c) || map.get(c) == 0)
{
return false;
}
map.put(c, map.get(c) - 1);
}
return true;
}
}
//tc=o(n)
//sc=o(1)