this post was submitted on 31 Oct 2024
383 points (99.0% liked)

196

16476 readers
2200 users here now

Be sure to follow the rule before you head out.

Rule: You must post before you leave.

^other^ ^rules^

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 15 points 1 week ago (2 children)
If number%2 == 0: return("Even")
Else: return("odd") 
[–] [email protected] 4 points 1 week ago

Not all ARM CPUs support mod operations. It’s better to use bit operations. Check if the last bit is set. If set it’s odd else it’s even.

load more comments (1 replies)