-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
55 lines (49 loc) · 1.4 KB
/
main.cpp
File metadata and controls
55 lines (49 loc) · 1.4 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
55
// Source: https://leetcode.com/problems/valid-anagram
// Title: Valid Anagram
// Difficulty: Easy
// Author: Mu Yang <http://muyang.pro>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Given two strings `s` and `t`, return `true` if `t` is an **anagram** of `s`, and `false` otherwise.
//
// An **anagram** is a word or phrase formed by rearranging the letters of a different word or phrase, using all the original letters exactly once.
//
// **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 * 10^4`
// - `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?
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <array>
#include <string>
using namespace std;
// Use counter
class Solution {
public:
bool isAnagram(string s, string t) {
array<int, 26> sCounter;
array<int, 26> tCounter;
for (auto ch : s) {
sCounter[ch - 'a']++;
}
for (auto ch : t) {
tCounter[ch - 'a']++;
}
return sCounter == tCounter;
}
};