Method FindAnagramsOfSubset
FindAnagramsOfSubset(Word)
Find anagrams of a subset of the letters in the given source string
IEnumerable<Word> FindAnagramsOfSubset(Word source)
Parameters
source
WordThe source string. May include spaces, but not other non-alphabet characters
Returns
- IEnumerable<Word>
A list of all anagrams of a subset of the letters in
source