package
0.0.0-20241020204346-852d83918761
Repository: https://github.com/plutov/practice-go.git
Documentation: pkg.go.dev
# README
Anagrams
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) []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 .