Skip to content

Commit d20789b

Browse files
committed
Format using black
1 parent 0476ab4 commit d20789b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Neetcode/Neetcode_150/Group_Anagrams/Group_Anagrams.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ def groupAnagrams(self, strs: List[str]) -> List[List[str]]:
1212
print(i[j])
1313
return results
1414

15+
1516
# Leetcode
1617
class Solution(object):
1718
def groupAnagrams(self, strs):
1819
"""
1920
:type strs: List[str]
2021
:rtype: List[List[str]]
2122
"""
22-

0 commit comments

Comments
 (0)