Skip to content

Commit

Permalink
Complete Anagram Finder implementation with tests and docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank2446-dotcom committed Jan 12, 2025
1 parent 6815cdc commit 56e58cc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion solutions/anagram_finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,5 @@ def anagram_finder(string1: str, string2: str) -> bool:
return sorted(string1) == sorted(string2)


# No doctest or function call here.
if __name__ == "__main__":
pass

0 comments on commit 56e58cc

Please sign in to comment.