5 lines
116 B
Python
5 lines
116 B
Python
def groupAnagrams(self, strs):
|
|
"""
|
|
:type strs: List[str]
|
|
:rtype: List[List[str]]
|
|
""" |