Clean debug statements

This commit is contained in:
Blizzard Finnegan 2021-12-17 13:50:32 -05:00
parent 7e6036d909
commit 9573fe6391

View file

@ -15,7 +15,6 @@ int main(void)
if (lastValue != 0) if (lastValue != 0)
{ {
if (lastValue < currentValue) decreaseCount++; if (lastValue < currentValue) decreaseCount++;
cout << decreaseCount << "\n";
} }
lastValue = currentValue; lastValue = currentValue;
} }