How do you check if two strings are anagrams of each other? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How do you check if two strings are anagrams of each other?

String Coding

26th Oct 2020, 10:06 PM
Dinusha Salith Perera
Dinusha Salith Perera - avatar
3 Answers
+ 8
A quick python example of the idea already expressed by NotAPythonNinja def check(word): return(sorted(word)) print(check('testing') == check('setting'))
26th Oct 2020, 10:34 PM
Rik Wittkopp
Rik Wittkopp - avatar
+ 6
Coder Kitten You could skip the frequency check and just do positional comparisons after sorting, then fail upon the first mismatch, otherwise return true after comparing all positions. Also, a short circuit validation could be to compare the lengths of both strings before sorting and return false if not equal. But, meh... may not be necessary.
26th Oct 2020, 10:25 PM
David Carroll
David Carroll - avatar
+ 6
NotAPythonNinja LOL... DOH... 🤦‍♂️ Yes... indeed... I completely agree. After sorting both values, a simple equality check is all that's needed. Coder Kitten I also agree that the algorithm you presented is consistent with the implementation. 👌 Not that it's an excuse... I was a bit rushed in my original response as I saw the post on my way out the door, then tried to respond in the checkout line at the store. Somewhere in between, I got it in my head that we were working with a traditional array rather than a character array (a.k.a. string). That's what I get for multitasking. 🤣😭😂
27th Oct 2020, 2:28 AM
David Carroll
David Carroll - avatar