Skip to content

Commit 0476ab4

Browse files
committed
init commit
1 parent 50d78f2 commit 0476ab4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Neetcode/Neetcode_150/Group_Anagrams/Group_Anagrams.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,12 @@ def groupAnagrams(self, strs: List[str]) -> List[List[str]]:
1111
if i[j] == i[j + 1]:
1212
print(i[j])
1313
return results
14+
15+
# Leetcode
16+
class Solution(object):
17+
def groupAnagrams(self, strs):
18+
"""
19+
:type strs: List[str]
20+
:rtype: List[List[str]]
21+
"""
22+

0 commit comments

Comments
 (0)