195
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]
you are viewing a single comment's thread
view the rest of the comments
[-] [email protected] 15 points 2 years ago* (last edited 2 years ago)
def is_even(n):
    match n:
        case 1:
            return False
        case 0:
            return True
        # fix No1
        case n < 0:
            return is_even(-1*n)
        case _:
            return is_even(n-2)
[-] [email protected] 5 points 1 year ago

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

[-] [email protected] 3 points 1 year ago

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

[-] [email protected] 3 points 2 years ago

Well... At least it's tail recursive.

[-] [email protected] 2 points 2 years ago

What if the input is negative

[-] [email protected] 4 points 2 years ago
this post was submitted on 07 Dec 2023
195 points (91.1% liked)

Programming Horror

2077 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 2 years ago
MODERATORS