this post was submitted on 07 Dec 2023
171 points (90.1% liked)

Programming Horror

239 readers
1 users here now

Welcome to Programming Horror!

This is a place to share strange or terrible code you come across.

For more general memes about programming there's also Programmer Humor.

Looking for mods. If youre interested in moderating the community feel free to dm @[email protected]

Rules

Credits

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 16 points 1 year ago* (last edited 1 year ago) (5 children)

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

[–] [email protected] 8 points 1 year ago (3 children)

here is somewhat less:

return (number % 2) == 0;

[–] pivot_root 10 points 1 year ago (2 children)
[–] venoft 8 points 1 year ago* (last edited 1 year ago) (1 children)

This is the way. Modulo takes too long to compute, bitwise compare should be a lot faster.

return !(number & 0x1);
[–] [email protected] 5 points 1 year ago* (last edited 1 year ago)

oh shit yo

this comment chain is pretty awesome, I learned a lot from this thanks!

load more comments (1 replies)