We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 629848e commit 0ca1279Copy full SHA for 0ca1279
strings/check_anagrams.py
@@ -5,7 +5,7 @@
5
6
def check_anagrams(first_str: str, second_str: str) -> bool:
7
"""
8
- Two strings are anagrams if they are made of the same letters
+ Two strings are anagrams if they are made up of the same letters but are
9
arranged differently (ignoring the case).
10
>>> check_anagrams('Silent', 'Listen')
11
True
0 commit comments