76
[R] Stupidest ways people have solved coding interviews
(loops.video)
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:
That would be isPositive.
Without using the modulo operator you'd essentially have to reimplement it. Divide the number by 2 and round down. Multiply that by 2 and then subtract it from the original number.
isEven(10) results in 10-10==0 (true) whereas isEven(13) results in 13-12==0 (false).
Yep! I'm wrong. Pretty embarrassing!
That's a nice solution though! Gonna have to try and remember that one!