this post was submitted on 07 Dec 2023
195 points (91.1% liked)

Programming Horror

1877 readers
1 users here now

Welcome to Programming Horror!

This is a place to share strange or terrible code you come across.

For more general memes about programming there's also Programmer Humor.

Looking for mods. If youre interested in moderating the community feel free to dm @[email protected]

Rules

Credits

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 18 points 11 months ago* (last edited 11 months ago) (1 children)

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

import math
def is_even(num):
    if num in [i for i in range(1000) if float(i)/2.0 == math.floor(float(i)/2.0)]:
        print("true")
    else:
        print("false")

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

[โ€“] [email protected] 4 points 11 months ago

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.