what is the recurrence relationship of the given function:
1: for I in range(n): binary(n-1, b +"0") binary(n-1, b +"1") else: print(b) "/>Extracted text: def binary(n, b=""): if n>1: for I in range(n): binary(n-1, b +"0") binary(n-1, b +"1") else: print(b)
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here