FBullCowGame.cpp
bool FBullCowGame::IsIsogram(FString Guess) const
{
// treat 0 & 1 letter words as isograms
if (Guess.length() <= 1) { return true; }
// setup map
TMap<char, bool> LetterSeen;
// loop through each letter in guess
for (auto Letter : Guess)
This file has been truncated. show original