mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-27 23:11:09 +00:00
0591968947
* * optimization aliquot_sum * fix bug in average_median * fixup! Format Python code with psf/black push * Update maths/average_median.py * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
21 lines
682 B
Python
21 lines
682 B
Python
def check_anagrams(a: str, b: str) -> bool:
|
|
"""
|
|
Two strings are anagrams if they are made of the same letters
|
|
arranged differently (ignoring the case).
|
|
>>> check_anagrams('Silent', 'Listen')
|
|
True
|
|
>>> check_anagrams('This is a string', 'Is this a string')
|
|
True
|
|
>>> check_anagrams('There', 'Their')
|
|
False
|
|
"""
|
|
return sorted(a.lower()) == sorted(b.lower())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
input_A = input("Enter the first string ").strip()
|
|
input_B = input("Enter the second string ").strip()
|
|
|
|
status = check_anagrams(input_A, input_B)
|
|
print(f"{input_A} and {input_B} are {'' if status else 'not '}anagrams.")
|