Went simple. Replicated what was done in the prior video without the use of a map:
(Function definition)
bool FBullCowGame::IsLowerCase(FString Guess) const
{
if (Guess.length() <= 1) { return true; }
for (auto Letter : Guess)
if (Letter = islower(Letter)) {
return false;
}
return true;
}