Implementation of IsLowerCase

This is how I did it:

bool FBullCowGame::IsLowerCase(FString string) const
{
	if (string.length() <= 0) { return false; }

	for (auto letter : string)
	{
		if (letter < 'a' || letter > 'z')
		{
			return false;
		}
	}

	return true;
}