diff --git a/Top150Interview/49_Group_Anagrams.py b/Top150Interview/49_Group_Anagrams.py new file mode 100644 index 0000000..0b57f82 --- /dev/null +++ b/Top150Interview/49_Group_Anagrams.py @@ -0,0 +1,5 @@ +def groupAnagrams(self, strs): + """ + :type strs: List[str] + :rtype: List[List[str]] + """ \ No newline at end of file