#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:
#interview
💻 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🏆 Leave your solutions in the comments. The solution will be posted below in a couple of hours 👇
IsAnagram("Dave Barry", "Ray Adverb") ➞ true
IsAnagram("Nope", "Note") ➞ false
#interview