What does h(19685) return for the following function definition?
def h(x): (d,n) = (1,0) while d <= x: (d,n) = (d*3,n+1) return(n)
Answers
Answered by
0
Answer:
I think 5
please follow me
Similar questions