We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38f42a2 commit 483f9c3Copy full SHA for 483f9c3
group-anagrams/kayden.py
@@ -1,4 +1,4 @@
1
-# 시간복잡도: O(N)
+# 시간복잡도: O(N*AlogN) A: 0<= strs[i]의 길이 <= 100
2
# 공간복잡도: O(N)
3
class Solution:
4
def groupAnagrams(self, strs: List[str]) -> List[List[str]]:
0 commit comments