Anagram
Write a function that takes two words (string) and returns true or false (boolean) depending on whether or not they are anagrams.
- An anagram consists of forming a word by rearranging all the letters of another initial word.
- There is no need to check that both words exist.
- Two exactly the same words are not an anagram.