Forgot password? New user? Sign up
Existing user? Log in
1 2 3 4 5 6 7 8 9 10
def fun1(a,b): if b==0: return 0 return a + fun1(a, b-1) def fun2(a,b): if b==0: return 1 else: return fun1(a, fun2(a, b-1))
Which of the following is equivalent to the fun2() function shown above?
fun2()
Assumptions
a,ba,ba,b are non-negative integers.
Problem Loading...
Note Loading...
Set Loading...