how to understand this recursion algorithm

后端 未结 0 576
抹茶落季
抹茶落季 2020-11-29 00:26
def sum(a):
    if a==1:
        s=1
    else:
        s=1+2*sum(a-1)
    return s

function:calculate the sum

相关标签:
回答
  • 消灭零回复
提交回复
热议问题