this post was submitted on 31 Oct 2024
209 points (100.0% liked)

196

662 readers
21 users here now

Be sure to follow the rule before you head out.


Rule: You must post before you leave.



Other rules

Behavior rules:

Posting rules:

NSFW: NSFW content is permitted but it must be tagged and have content warnings. Anything that doesn't adhere to this will be removed. Content warnings should be added like: [penis], [explicit description of sex]. Non-sexualized breasts of any gender are not considered inappropriate and therefore do not need to be blurred/tagged.

If you have any questions, feel free to contact us on our matrix channel or email.

Other 196's:

founded 2 years ago
MODERATORS
 
top 37 comments
sorted by: hot top controversial new old
[–] Euphoma@lemmy.ml 51 points 5 months ago (1 children)

return true

is correct around half of the time

[–] ImplyingImplications@lemmy.ca 30 points 5 months ago
assert IsEven(2) == True
assert IsEven(4) == True
assert IsEven(6) == True

All checks pass. LGTM

[–] bob_lemon@feddit.org 35 points 5 months ago* (last edited 5 months ago) (2 children)
import re

def is_even(i: int) -> bool:
    return re.match(r"-?\d*[02468]$", str(i)) is not None
[–] lime@feddit.nu 4 points 5 months ago

i was gonna suggest the classic

re.match(r"^(..)\1*$", "0" * abs(i)) is not None
[–] superkret@feddit.org 33 points 5 months ago (2 children)

Just divide the number into its prime factors and then check if one of them is 2.

[–] fartripper@lemmy.ml 14 points 5 months ago* (last edited 5 months ago) (1 children)

or divide the number by two and if the remainder is greater than

-(4^34)

but less than

70 - (((23*3*4)/2)/2)

then

true
[–] superkret@feddit.org 5 points 5 months ago

What if the remainder is greater than the first, but not less than the latter?

Like, for example, 1?

load more comments (1 replies)
[–] Rai@lemmy.dbzer0.com 23 points 5 months ago (1 children)

Zero people in this post get the YanDev reference

[–] urheber@discuss.tchncs.de 7 points 5 months ago (1 children)

so nobody actually really got the joke. very sad Moment.

[–] Rai@lemmy.dbzer0.com 8 points 5 months ago

It’s really just us… I’ve seen the basic programming joke a bunch of times, but people really aren’t understanding the YanDev/font embellishment. Sad indeed.

[–] jbk@discuss.tchncs.de 19 points 5 months ago (1 children)

so did someone draw this by hand or was it a filter

[–] beefbot@lemmy.blahaj.zone 7 points 5 months ago

tbh it looks like an AI broke this down slightly & reconstructed it

[–] gerryflap@feddit.nl 18 points 5 months ago (1 children)

Using Haskell you can write it way more concise:

iseven :: Int -> Bool
iseven 0 = True
iseven 1 = False
iseven 2 = True
iseven 3 = False
iseven 4 = True
iseven 5 = False
iseven 6 = True
iseven 7 = False
iseven 8 = True
...

However, we can be way smarter by only defining the 2 base cases and then a recursive definition for all other numbers:

iseven :: Int -> Bool
iseven 0 = True
iseven 1 = False
iseven n = iseven (n-2)

It's having a hard time with negative numbers, but honestly that's quite a mood

[–] luciferofastora@lemmy.zip 9 points 5 months ago

Recursion is its own reward

[–] lnxtx@feddit.nl 13 points 5 months ago (1 children)

Ask AI:

public static boolean isEven(int number) {
    // Handle negative numbers
    if (number < 0) {
        number = -number; // Convert to positive
    }
    
    // Subtract 2 until we reach 0 or 1
    while (number > 1) {
        number -= 2;
    }
    
    // If we reach 0, it's even; if we reach 1, it's odd
    return number == 0;
}
[–] YtA4QCam2A9j7EfTgHrH@infosec.pub 13 points 5 months ago (1 children)

This makes me happy that I don’t use genai

[–] Mirodir@discuss.tchncs.de 7 points 5 months ago

I'm not sure how fucked up their prompt is (or how unlucky they were). I just did 3 tries and every time it used modulo.

I'm assuming they asked it specifically to either not use modulo or to do a suboptimal way to make this joke.

[–] istdaslol@feddit.org 12 points 5 months ago

When you sacrifice memory for an O(1) algorithm.

In this case still O(n)

[–] dadarobot@lemmy.sdf.org 11 points 5 months ago (2 children)
If number%2 == 0: return("Even")
Else: return("odd") 
[–] istdaslol@feddit.org 3 points 5 months 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.

[–] lol_idk@lemmy.ml 1 points 5 months ago* (last edited 4 months ago)
[–] FiskFisk33@startrek.website 11 points 5 months ago (3 children)

oh of course there is

https://www.npmjs.com/package/is-even

(do take a look at the download stats)

[–] FJW@discuss.tchncs.de 11 points 5 months ago* (last edited 5 months ago)

And that isn’t even the worst thing about it…

The implementation looks like this:

function isEven(i) {
  return !isOdd(i);
};

And yes, is-odd is a dependency that in turn depends on is-number

[–] Micromot@feddit.org 8 points 5 months ago* (last edited 5 months ago) (4 children)

Can't you just

If (number % 2 == 0){return true}

[–] blackn1ght@feddit.uk 11 points 5 months ago (1 children)
[–] Micromot@feddit.org 1 points 5 months ago

Yeah, that's even simpler

[–] drake@lemmy.sdf.org 6 points 5 months ago (2 children)

but what if number isn’t an integer, or even a number at all? This code, and the improved code shared by the other user, could cause major problems under those conditions. Really, what you would want, is to validate that number is actually an integer before performing the modulo, and if it isn’t, you want to throw an exception, because something has gone wrong.

That’s exactly what that NPM module does. And this is why it’s not a bad thing to use packages/modules for even very simple tasks, because they help to prevent us from making silly mistakes.

[–] FiskFisk33@startrek.website 1 points 4 months ago

ah the joys of loosely typed languages

[–] Micromot@feddit.org 1 points 5 months ago (1 children)

That would already cause an exception when calling the function because it has int number in the parameters

[–] drake@lemmy.sdf.org 4 points 5 months ago

Javascript doesn’t have strongly-typed variables

[–] FiskFisk33@startrek.website 5 points 5 months ago

yup, which is why I find the download stats truly horrifying

[–] servobobo@feddit.nl 6 points 5 months ago* (last edited 5 months ago)

"If it's not an npm package it's impossible"

- JS devs, probably

[–] ashestoashes@lemmy.blahaj.zone 4 points 5 months ago

just check the least significant bit smh my head

[–] MuffinHeeler@aussie.zone 1 points 5 months ago

=if((number/2)-round(number/2,0)=0,true,false)