my-solutions/codewars/elixir/anagram/README.md

14 lines
348 B
Markdown
Raw Permalink Normal View History

# Anagram
An anagram is the result of rearranging the letters of a word to produce a new word.
Note: anagrams are case insensitive.
Complete the function to return true if the two arguments given are anagrams of each other; return false otherwise.
## Examples
- "foefet" is an anagram of "toffee"
- "Buckethead" is an anagram of "DeathCubeK"