We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eb6803 commit 7a07689Copy full SHA for 7a07689
valid-anagram/heesun-task.py
@@ -24,4 +24,5 @@ def isAnagram(self, s: str, t: str) -> bool:
24
if s_dict[t_letter] == 0:
25
del s_dict[t_letter]
26
27
- return len(s_dict) == 0
+ return len(s_dict) == 0
28
+
0 commit comments