public bool IsValidAnagramPhrase(string phrase)
 {
     return(Day4.AnagramPhraseValidator(phrase));
 }