Challenges • Asked about 5 years ago by Alexander Volinski
is_anagram('cinema', 'iceman') should return False - Mistake?
Should return True
Link to problem: Is An Anagram.
isanagram('Mary', 'Army') should return False according to the test but I see that the assert statement states
`assert isanagram('Mary', 'Army') == True` when I test my code
There's a solution that can be run in a time complexity of O(n).