What does h(3231) return for the following function definition?
Answers
Answered by
0
Answer:
def h(x):
(m,a) = (1,0)
while m <= x:
(m,a) = (m*2,a+1)
return(a)
Similar questions