strings.check_anagrams¶
wiki: https://en.wikipedia.org/wiki/Anagram
Attributes¶
Functions¶
|
Two strings are anagrams if they are made up of the same letters but are |
Module Contents¶
- strings.check_anagrams.check_anagrams(first_str: str, second_str: str) bool¶
Two strings are anagrams if they are made up of the same letters but are arranged differently (ignoring the case). >>> check_anagrams(āSilentā, āListenā) True >>> check_anagrams(āThis is a stringā, āIs this a stringā) True >>> check_anagrams(āThis is a stringā, āIs this a stringā) True >>> check_anagrams(āThereā, āTheirā) False
- strings.check_anagrams.input_a¶