Skip to content

Instantly share code, notes, and snippets.

View AndrewMilburn's full-sized avatar

Andrew Milburn AndrewMilburn

  • ViciousCat069 Productions
View GitHub Profile
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)
// HelloWorld.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
int main()
{
std::cout << "Hello World!\n";