• jeff 👨‍💻
    link
    151 year ago
    bool isEven(int num) {
       return !isOdd(num);
    }
    
    bool isOdd(int num) {
       return !isEven(num);
    }
    
    • Spy
      link
      11 year ago

      Legends say this code runs faster than what the op posted. StackOverflow Errors are surprisingly fast in most languages