this post was submitted on 07 Dec 2023
115 points (100.0% liked)

Programming Horror

22 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 @Ategon@programming.dev

Rules

Credits

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] mac@programming.dev 12 points 10 months ago* (last edited 10 months ago) (2 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

[–] nullPointer@programming.dev 6 points 10 months ago

here is somewhat less:

return (number % 2) == 0;

[–] perviouslyiner@lemm.ee 2 points 10 months ago (1 children)

are the negative numbers all even?

[–] I_am_10_squirrels 2 points 10 months ago