Which functions in class BullCowGame should be const

In my opinion, the Reset() method should not be made const since it does not return any value currently while both IsGameWon() and CheckGuessValidity() functions should be const since they both have values returned, and these values can be changed within each function

Privacy & Terms