my-solutions/codewars/elixir/anagram
2024-06-12 16:32:43 +05:00
..
lib codewars: solve 'anagram detection' problem 2024-06-12 16:32:43 +05:00
test codewars: solve 'anagram detection' problem 2024-06-12 16:32:43 +05:00
.formatter.exs codewars: solve 'anagram detection' problem 2024-06-12 16:32:43 +05:00
.gitignore codewars: solve 'anagram detection' problem 2024-06-12 16:32:43 +05:00
mix.exs codewars: solve 'anagram detection' problem 2024-06-12 16:32:43 +05:00
README.md codewars: solve 'anagram detection' problem 2024-06-12 16:32:43 +05:00

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"