logoalt Hacker News

jimbokunyesterday at 5:48 PM1 replyview on HN

But why would the lines in the 2000 case be easier to review per line?


Replies

squeaky-cleantoday at 5:53 AM

Which of these programs is easier to review

  {x{x,sum -2#x}/0 1}
or

  def f(n):
      if n <= 1:
          return n
      else:
          return f(n-1) + f(n-2)
They're both the same program
show 1 reply