Hacker News
new
past
comments
ask
show
jobs
points
by
jimbokun
18 hours ago
|
comments
by
squeaky-clean
6 hours ago
|
[-]
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
reply