Created
March 20, 2025 07:59
-
-
Save ivanThePleasant/95712510b464e7b2e96e33b6aca8c5d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| Write a function that takes two words as an argument and returns true if they are anagrams (contain the exact same letters) and false otherwise. | |
| An anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once. | |
| Examples: | |
| Replays… Parsley | |
| Leaf…Flea | |
| Admirer… Married | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment