andioop@programming.dev to Programming Horror@programming.dev • edit-211 months agoGod I wish there was an easier way to do thisimagemessage-square23 fedilinkarrow-up194
arrow-up194imageGod I wish there was an easier way to do thisandioop@programming.dev to Programming Horror@programming.dev • edit-211 months agomessage-square23 Commentsfedilink
minus-squaremac@programming.devhexbear9·edit-211 months agowho needs modulo when you can get less characters out of while (number > 1) { number -= 2; } return number; very efficient edit: or theres the trusty iseven api linkfedilink
minus-squareNullPointer@programming.devhexbear5·11 months agohere is somewhat less: return (number % 2) == 0; linkfedilink
minus-squarehuf [he/him]hexbear4·11 months agojust check the last bit jesus christ, what is it with these expensive modulo operations?! return !(n&1); link
minus-squareperviouslyiner@lemm.eehexbear1·11 months agoare the negative numbers all even? linkfedilink
who needs modulo when you can get less characters out of
while (number > 1) { number -= 2; } return number;
very efficient
edit: or theres the trusty iseven api
here is somewhat less:
return (number % 2) == 0;
just check the last bit jesus christ, what is it with these expensive modulo operations?!
return !(n&1);
are the negative numbers all even?