Ategon@programming.dev to Programmer Humor@programming.dev · 2 years agoHow to detect if a number is evenprogramming.devimagemessage-square20fedilinkarrow-up166arrow-down13
arrow-up163arrow-down1imageHow to detect if a number is evenprogramming.devAtegon@programming.dev to Programmer Humor@programming.dev · 2 years agomessage-square20fedilink
minus-squarejeff 👨💻@programming.devlinkfedilinkarrow-up15·2 years agobool isEven(int num) { return !isOdd(num); } bool isOdd(int num) { return !isEven(num); }
minus-squareSpy@programming.devlinkfedilinkarrow-up1·2 years agoLegends say this code runs faster than what the op posted. StackOverflow Errors are surprisingly fast in most languages
bool isEven(int num) { return !isOdd(num); } bool isOdd(int num) { return !isEven(num); }
Legends say this code runs faster than what the op posted. StackOverflow Errors are surprisingly fast in most languages