Menu

[solved] – Question 79990

What is the value of h(231,8) for the function below?
def h(m,n):
ans = 0
while (m >= n):
(ans,m) = (ans+1,m-n)
return(ans)

Expert Answer


OR


Leave a Reply

Your email address will not be published. Required fields are marked *