forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
valid-anagram.py
42 lines (35 loc) · 882 Bytes
/
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
# 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)