Skip to content

Instantly share code, notes, and snippets.

View meidav's full-sized avatar

Arbel Meidav meidav

View GitHub Profile
@meidav
meidav / FBullCowGame.cpp
Created February 3, 2019 09:02
FBullCowGame::IsIsogram
bool FBullCowGame::IsIsogram(FString Word) const
{
if (Word.length() <= 1) { return true; }
TMap<char, bool> LetterSeen;
for (auto Letter : Word) {
Letter = tolower(Letter);
if (LetterSeen[Letter]) {
return false;