Sentient Loom@sh.itjust.works to Lemmy Shitpost@lemmy.worldEnglish · 6 months agoDon't tell me what to dosh.itjust.worksexternal-linkmessage-square19linkfedilinkarrow-up1139arrow-down15
arrow-up1134arrow-down1external-linkDon't tell me what to dosh.itjust.worksSentient Loom@sh.itjust.works to Lemmy Shitpost@lemmy.worldEnglish · 6 months agomessage-square19linkfedilink
minus-squareSnazz@lemmy.worldlinkfedilinkarrow-up5·edit-26 months agoThere are only 4.29 billion possible values of an int32, so even if you used 2 lines for each case, it’d still be under 10 billion lines of code bool isOdd(int num) { if (num == 1) { return true; } if (num == 2) { return false; } if (num == 3) { return true; } … }
minus-squareSentient Loom@sh.itjust.worksOPlinkfedilinkEnglisharrow-up3·6 months agookay but what about an int512?
smallest isOdd function
There are only 4.29 billion possible values of an int32, so even if you used 2 lines for each case, it’d still be under 10 billion lines of code
bool isOdd(int num) { if (num == 1) { return true; } if (num == 2) { return false; } if (num == 3) { return true; } … }
okay but what about an
int512
?