-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0242.go
58 lines (50 loc) · 1.35 KB
/
0242.go
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
// 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, typically 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?
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package main
func isAnagram(s string, t string) bool {
n := len(s)
if len(t) != n {
return false
}
pool := make([]int, 26)
// Count char in s
for _, v := range s {
pool[v-'a']++
}
// Count char in t
for _, v := range t {
pool[v-'a']--
}
// Check anagram
for _, cnt := range pool {
if cnt != 0 {
return false
}
}
return true
}