-
Notifications
You must be signed in to change notification settings - Fork 43
/
valid-anagram.py
97 lines (76 loc) · 2.18 KB
/
valid-anagram.py
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
"""
242. Valid Anagram
Easy
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 * 104
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?
"""
# V0
class Solution:
def isAnagram(self, s, t):
return sorted(s) == sorted(t)
# V1
# https://blog.csdn.net/liuchonge/article/details/51913298
# http://bookshadow.com/weblog/2015/08/01/leetcode-valid-anagram/
class Solution:
def isAnagram(self, s, t):
return sorted(s) == sorted(t)
# V1'
# https://blog.csdn.net/liuchonge/article/details/51913298
# http://bookshadow.com/weblog/2015/08/01/leetcode-valid-anagram/
class Solution:
# @param {string} s
# @param {string} t
# @return {boolean}
def isAnagram(self, s, t):
from collections import Counter
return Counter(s).items() == Counter(t).items()
# V2
class Solution:
def isAnagram(self, s, t):
return sorted(s) == sorted(t)
# V3
# Time: O(n)
# Space: O(1)
import collections
import string
class Solution(object):
# @param {string} s
# @param {string} t
# @return {boolean}
def isAnagram(self, s, t):
if len(s) != len(t):
return False
count = collections.defaultdict(int)
for c in s:
count[c] += 1
for c in t:
count[c] -= 1
if count[c] < 0:
return False
return True
# Time: O(nlogn)
# Space: O(n)
class Solution2(object):
# @param {string} s
# @param {string} t
# @return {boolean}
def isAnagram(self, s, t):
return sorted(s) == sorted(t)
# Time: O(n)
# Space: O(n)
class Solution3(object):
# @param {string} s
# @param {string} t
# @return {boolean}
def isAnagram(self, s, t):
return collections.Counter(s) == collections.Counter(t)