this post was submitted on 21 Dec 2024
73 points (94.0% liked)

Fun Loops ▶️

788 readers
1 users here now

Posting interesting/cool/funny videos from Loops here

https://loops.video/

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 ♻️ or [R] (if you don't feel like typing an emoji) for "reposted". For example, ♻️ Cute dog or [R] Cute dog.

Note that some loopers upload their loops to multiple platforms including Loops, so you might see insta/tiktok logos on videos that aren't marked as reposts.

If you know the source for a loop marked ♻️/[R], please comment with it!

Rules:

  1. Don't be a dick
  2. Don't make me add more rules

founded 6 months ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Kraiden@kbin.earth -2 points 5 months ago (11 children)

I'm sorry, but even without knowing about the mod operator, this is inefficient and over engineered. Why have a loop at all?

fun isEven(n: Int){
    return n == abs(n)
}

no loop required...

having said that, I can totally see how that was missed in a high pressure interview. I hate interviews like that!

edit: Ha ha... isEven...not isPositive... I'm tired. ignore me!

[–] lobut@lemmy.ca 11 points 5 months ago* (last edited 5 months ago) (2 children)

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.

[–] Kraiden@kbin.earth 3 points 5 months ago (1 children)

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

[–] UID_Zero 3 points 5 months ago

Bitwise and with 0x1. If result is 0, it's even. Least significant bit is always 1 for odd numbers.

load more comments (8 replies)