Skip to content

Commit 41e0e8c

Browse files
author
jinbeom
committed
Fix Group Anagrams Solution
1 parent 483f9c3 commit 41e0e8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

group-anagrams/kayden.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 시간복잡도: O(N*AlogN) A: 0<= strs[i]의 길이 <= 100
1+
# 시간복잡도: O(N*AlogA) A: 0<= strs[i]의 길이 <= 100
22
# 공간복잡도: O(N)
33
class Solution:
44
def groupAnagrams(self, strs: List[str]) -> List[List[str]]:

0 commit comments

Comments
 (0)