Skip Navigation
160 comments
  • I am more amazed that he didn't stop at 10 and think "damn this is tiresome isn't there a one liner i could do?". I want to know how far he went. His stubbornness is amazing but also scary. I haven't seen this kind of code since back in school lol lol lol

  • Throwback to when someone shared the OG version of this meme to my uni chat, I replied with "Oh you can simply do

     python
        
    def is_even(n: int) -> boolean:
        if n > 0 return not is_even(n - 1)
        elif n < 0 return not is_even(n + 1)
        else return True
    
      

    And instead of laughing at the joke the TA in the chat said "When you start getting internships you'll do n % 2" like I was being serious.

160 comments