LeetCode/Top150Interview/49_Group_Anagrams.py
2023-08-04 03:31:18 -07:00

5 lines
116 B
Python

def groupAnagrams(self, strs):
"""
:type strs: List[str]
:rtype: List[List[str]]
"""