Create a Pull Request for this exercise
When two or more words are composed of the same characters, but in a different order, they are called anagrams. Write a function FindAnagrams(dictionary []string, word string)
that will find all possible anagrams for the given string in a given dictionary.
Sample anagram:
"Madam Curie" = "Radium came"
Run tests with benchmarks
go test -bench .