Skip to content

Commit 7a07689

Browse files
committed
Add empty line
1 parent 5eb6803 commit 7a07689

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

valid-anagram/heesun-task.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ def isAnagram(self, s: str, t: str) -> bool:
2424
if s_dict[t_letter] == 0:
2525
del s_dict[t_letter]
2626

27-
return len(s_dict) == 0
27+
return len(s_dict) == 0
28+

0 commit comments

Comments
 (0)