this post was submitted on 02 Jul 2023
46 points (92.6% liked)

Programmer Humor

32410 readers
1 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 6 years ago
MODERATORS
 
top 10 comments
sorted by: hot top controversial new old
[–] spread@programming.dev 20 points 2 years ago (2 children)

Impressive, very nice. Now let's see LLM's space complexity.

[–] fubo@lemmy.world 18 points 2 years ago (1 children)

O(all the GPUs, all of them)

[–] VictorPrincipum@vlemmy.net 7 points 2 years ago (1 children)

Hey now, don’t forget all the memory too

[–] rcmaehl@lemmy.world 5 points 2 years ago (1 children)
[–] Sotuanduso@lemm.ee 1 points 2 years ago

/UnexpectedGimli

[–] whiskeypickle@lemmy.ml 4 points 2 years ago

Eggshell… and is that… Gothic type?

[–] duncesplayed@lemmy.one 10 points 2 years ago (3 children)

Any algorithm can be O(n^2) if you only want it to be occasionally right.

[–] Iridium@lemmy.world 10 points 2 years ago
Function isPrime(number):
    return false

Accurate for almost 100% of cases

[–] julianh@lemm.ee 3 points 2 years ago

Any algorithm can be O(1) if you cache all the answers beforehand.

[–] MajorHavoc@lemmy.world 2 points 2 years ago

Yes.

And depending how occasionally we're talking, I can code for some very fast solutions when the correctness requirements are low enough.

Alternately, if we want it to only be occasionally fast, I've got a very nice looking and very wrong algorithm for that, as well.