bool HaveWeWonYet() { var wordAsList = WordToGuess.ToList(); wordAsList.RemoveAll(c => Guesses.Contains(c)); return(wordAsList.Count == 0); }