NostraDavid,
@NostraDavid@programming.dev avatar

You joke, but I’ve seen a programming language that didn’t have a loop, and if you copied a line of text and pasted it in a text editor, JSON would come out…

The editor could barely handle 400+ lines because it probably converted the text to JSON, added a letter and converted it back to JSON… Per inserted symbol…

vrighter,
tweeks,

I would love it if someone edited this example and posted it with two statements near the end that are reversed, implying inconsistent behaviour at random in the list ahead, seemingly making this solution less inefficient.

Shinji_Ikari,
@Shinji_Ikari@hexbear.net avatar

Programming humor on reddit used to be excellent bits like this but then it devolved into new learners jumping straight to the irony they didn’t understand and flooded the sub with nonsense.

I miss these bits.

btw it does get easier


<span style="color:#323232;">import math
</span><span style="color:#323232;">def is_even(num):
</span><span style="color:#323232;">    if num in [i for i in range(1000) if float(i)/2.0 == math.floor(float(i)/2.0)]:
</span><span style="color:#323232;">        print("true")
</span><span style="color:#323232;">    else:
</span><span style="color:#323232;">        print("false")
</span>

Obviously one would need to increase the range for bigger numbers but this code is optimized.

sloppy_diffuser,

for i in itertools.count(): … will count to infinity.

Better make it into a dictionary so it’s O(1) complexity instead of O(n) while you’re at it.

SpeakinTelnet, (edited )

<span style="color:#323232;">def is_even(n):
</span><span style="color:#323232;">    match n:
</span><span style="color:#323232;">        case 1:
</span><span style="color:#323232;">            return False
</span><span style="color:#323232;">        case 0:
</span><span style="color:#323232;">            return True
</span><span style="color:#323232;">        # fix No1
</span><span style="color:#323232;">        case n &lt; 0:
</span><span style="color:#323232;">            return is_even(-1*n)
</span><span style="color:#323232;">        case _:
</span><span style="color:#323232;">            return is_even(n-2)
</span>
AlyxMS,

What if the input is negative

SpeakinTelnet,

Fixed!

sloppy_diffuser,

Python added match/case?! Bunch of mypy issues have been closed too. Maybe its time to dust off some old projects.

SpeakinTelnet,

It was added in 3.10 and is surprisingly complete. The tutorial pep is a good starting point to see what it can accomplish

Chobbes,

Well… At least it’s tail recursive.

neidu, (edited )

My solution in perl back in the day when I was a teenage hobbyist who didn’t know about the modulus operator: Divide by 2 and use regex to check for a decimal point.

if ($num / 2 =~ /./) { return “odd” }
else { return “even” }

lysdexic,

Divide by 2 and check for a decimal point.

I mean, it ain’t wrong.

Chobbes,

You know, I was going to let this slide under the notion that we’re just ignoring the limited precision of floating point numbers… But then I thought about it and it’s probably not right even if you were computing with real numbers! The decimal representation of real numbers isn’t unique, so this could tell me that “2 = 1.9999…” is odd. Maybe your string coercion is guaranteed to return the finite decimal representation, but I think that would be undecidable.

backgroundcow,

Ackchyually-- IEEE 754 guarantees any integer with absolute value less than 2^24 to be exactly representable as a single precision float. So, the “divide by 2, check for decimals” should be safe as long as the origin of the number being checked is somewhat reasonable.

Chobbes,

Of course, but it’s somewhat nasty when all of a sudden is_even doesn’t do what you expect :).

lysdexic,

The decimal representation of real numbers isn’t unique, so this could tell me that “2 = 1.9999…” is odd.

I don’t think your belief holds water. By definition an even number, once divided by 2, maps to an integer. In binary representations, this is equivalent to a right shift. You do not get a rounding error or decimal parts.

But this is nitpicking a tongue-in-cheek comment.

Chobbes,

“1.99999…” is an integer, though! If you’re computing with arbitrary real numbers and serializing it to a string, how do you know to print “2” instead of “1.9999…”? This shouldn’t be decidable, naively if you have a program that prints “1.” and then repeatedly runs a step of an arbitrary Turing machine and then prints “9” if it did not terminate and stops printing otherwise, determining if the number being printed would be equal to 2 would solve the halting problem.

Arbitrary precision real numbers are not represented by finite binary integers. Also a right shift on a normal binary integer cannot tell you if the number is even. A right shift is only division by 2 on even numbers, otherwise it’s division by 2 rounded down to the nearest integer. But if you have a binary integer and you want to know if it’s even you can just check the least significant bit.

Thyrian,

This could be optimized by using a recursive function.

neeeeDanke,

This could be made more servicavle by using a switch case

comrade_pibb,
@comrade_pibb@hexbear.net avatar

what’s the big O of an even number

Thyrian,

You could do this in one line…

By removing all the linebreaks.

DeathsEmbrace,

Why even put spaces too many key presses.

iegod,

I love this thread 🫠

Strawberry,

i think it should one giant ternary expression composition

olafurp,

Of course there’s an easier way. Just integrate the state of the art API dedicated for this exact problem. isevenapi.xyz

misophist,

This is confusing. I’m already using the iSeven API to determine if a number is 7. I’m getting a namespace collision error when I try to load this new API. Bug report filed.

AI_toothbrush,

…btw a switch statement is better in this case(get it?)

FarraigePlaisteach,
FarraigePlaisteach avatar

I would replace each if/else with a while.

Anticorp,

Back when I was learning programming a lot of lessons would make you do something like this, and then show you the real way to do it in the next lesson. My reaction was always “why didn’t you lead with this?”.

Potatos_are_not_friends,

You must see the pain before you confront it.

Coreidan,

Because the point of the lesson is to demonstrate that you can solve the same problem multiple ways where some paths are more efficient than others.

Bad programmers are the ones that find the first solution and implement it no matter how inefficient it is.

Good programmers spend time on figuring out the solution with the least amount broken or inefficient code. You don’t learn this by jumping straight to the best answer every time.

Lucien,
@Lucien@hexbear.net avatar

God, this must go on for, like, twenty or so lines.

ndsvw,
@ndsvw@feddit.de avatar

Well, there is. Write an algorithm that generates all the lines… /s

aodhsishaj,

Modulo

whyNotSquirrel,
@whyNotSquirrel@sh.itjust.works avatar

print(theJoke % you);

wooosh

dylanTheDeveloper,
@dylanTheDeveloper@lemmy.world avatar

I’m more of a Gemini myself

  • All
  • Subscribed
  • Moderated
  • Favorites
  • programming_horror@programming.dev
  • Durango
  • DreamBathrooms
  • thenastyranch
  • magazineikmin
  • tacticalgear
  • khanakhh
  • Youngstown
  • mdbf
  • slotface
  • rosin
  • everett
  • ngwrru68w68
  • kavyap
  • InstantRegret
  • JUstTest
  • cubers
  • GTA5RPClips
  • cisconetworking
  • ethstaker
  • osvaldo12
  • modclub
  • normalnudes
  • provamag3
  • tester
  • anitta
  • Leos
  • megavids
  • lostlight
  • All magazines