andioop to Programming HorrorEnglish · edit-21 year agoGod I wish there was an easier way to do thisimagemessage-square55fedilinkarrow-up1216arrow-down121
arrow-up1195arrow-down1imageGod I wish there was an easier way to do thisandioop to Programming HorrorEnglish · edit-21 year agomessage-square55fedilink
minus-squareMuchPineapples@lemmy.worldlinkfedilinkarrow-up8·edit-21 year agoThis is the way. Modulo takes too long to compute, bitwise compare should be a lot faster. return !(number & 0x1);
minus-squarerecursive_recursion [they/them]AlinkfedilinkEnglisharrow-up5·edit-21 year agooh shit yo this comment chain is pretty awesome, I learned a lot from this thanks!
return !(number & 1);
This is the way. Modulo takes too long to compute, bitwise compare should be a lot faster.
return !(number & 0x1);
oh shit yo
this comment chain is pretty awesome, I learned a lot from this thanks!