this post was submitted on 21 Dec 2024
73 points (94.0% liked)
Fun Loops ▶️
315 readers
252 users here now
Posting interesting/cool/funny videos from Loops here
Thanks to @Bluefruit @lemmy.world for the icon and banner!
Discussion of and questions about Loops should go over in !loops@lemmy.world
If the loop you're posting isn't original content uploaded by the creator, prefix the title with [R]
for "reposted". For example, [R] Cute dog
.
Rules:
- Don't be a dick
- Don't make me add more rules
founded 1 month ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Because the abs(3) == 3 is true and that isn't even.
An even number of flips would be true and an odd number of flips would be false which works out.
I was thinking a bitwise & or converting it to a string and testing if the right most character is 0, 2, 4, 6, 8 would be panic mode solutions too.
you might be able to do it with a bitwise op? My track record tonight is not great so I'm not going to comment. Have a look at @ImplyingImplactions comment for a loopless solution
Bitwise and with 0x1. If result is 0, it's even. Least significant bit is always 1 for odd numbers.