-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path242.ValidAnagram.cpp
65 lines (62 loc) · 1.34 KB
/
242.ValidAnagram.cpp
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
55
56
57
58
59
60
61
62
63
64
/*
* @lc app=leetcode id=242 lang=cpp
*
* [242] Valid Anagram
*
* https://leetcode.com/problems/valid-anagram/description/
*
* algorithms
* Easy (56.69%)
* Likes: 1765
* Dislikes: 148
* Total Accepted: 619.1K
* Total Submissions: 1.1M
* Testcase Example: '"anagram"\n"nagaram"'
*
* 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?
*
*/
// @lc code=start
#include <string>
#include <unordered_map>
class Solution {
public:
bool isAnagram(std::string s, std::string t) {
if (s.length() != t.length()) return false;
std::unordered_map<char, int> count;
for (char letter: s) {
if (count.find(letter) == count.end()) {
count[letter] = 0;
}
count[letter]++;
}
for (char letter: t) {
if (count.find(letter) == count.end() || count[letter] == 0) return false;
count[letter]--;
}
return true;
}
};
// @lc code=end