Comment on I wish

<- View Parent
nyoooom@lemmy.world ⁨7⁩ ⁨months⁩ ago
bool isEven(int num) {
 return num == 0 || !isEven(num - (num > 0 ? 1 : -1));
}

source
Sort:hotnewtop