this post was submitted on 16 Nov 2023
224 points (95.5% liked)
Programmer Humor
19606 readers
392 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Depending on whether this code is in a hotpath (and considering how "elementary" it is, I figure that's a possibility), this could very well be a significant speed improvement.
Though I'd say that only excuses it if it's truly an elementary function (and not one line as part of a larger function), as otherwise it's unreadable garbage. But on its own it:
It's one line as part of a larger function. Also, it doesn't actually say
weekend
, it just executes some other functionalityif !(day % 6)
. I made it more readable so that everyone here could understand what it does