#challenge



💻 Check for Anagrams | #easy



Create a function that takes two strings and returns either true or false depending on whether they're anagrams or not.



Examples:



IsAnagram("cristian", "Cristina") ➞ true

IsAnagram("Dave Barry", "Ray Adverb") ➞ true

IsAnagram("Nope", "Note") ➞ false



🏆 Leave your solutions in the comments. The solution will be posted below in a couple of hours 👇



#interview