From 866df8030f4cb5cd587391e00db2e6915def61c5 Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Fri, 4 Aug 2023 03:31:18 -0700 Subject: [PATCH] initialize problem 49 --- Top150Interview/49_Group_Anagrams.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Top150Interview/49_Group_Anagrams.py 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