this is y code it runs fin on VS but here it doesn't the error recursion depth exceeded
def decimalDivition(a:int):
if a<1:
return 1
else:
return 1 + decimalDivition(a);
def number_length(a: int) -> int:
numberLength=decimalDivition(a)
return numberLength
Created at: 2020/10/23 17:56; Updated at: 2020/10/23 19:36