You're viewing a single thread.
All Comments
20 comments
bool isEven(int num) { return !isOdd(num); } bool isOdd(int num) { return !isEven(num); }
14 0 ReplyLegends say this code runs faster than what the op posted. StackOverflow Errors are surprisingly fast in most languages
1 0 Reply
20 comments
Scroll to top