Clean debug lines

This commit is contained in:
Blizzard Finnegan 2021-12-16 22:48:45 -05:00
parent 08a46edb51
commit 6603f4a904
2 changed files with 0 additions and 4 deletions

View file

@ -117,7 +117,6 @@ int main (void)
if(turnCount < lowestTurnCount)
{
lowestTurnCount = turnCount;
cout << turnCount << endl;
bestBoard = boardValues;
bestMarkedNumbers = markedNumbers;
}
@ -126,7 +125,6 @@ int main (void)
else
{
markedNumbers.clear();
cout << "Too high" << endl;
}
for(int i = 0; i < 5; i++)
{

View file

@ -118,7 +118,6 @@ int main (void)
if(turnCount > lowestTurnCount)
{
lowestTurnCount = turnCount;
cout << turnCount << endl;
bestBoard = boardValues;
bestMarkedNumbers = markedNumbers;
}
@ -127,7 +126,6 @@ int main (void)
else
{
markedNumbers.clear();
cout << "Too low" << endl;
}
for(int i = 0; i < 5; i++)
{