Light Mode
Dark Mode
what is the recursion depth on this thing

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: Oct. 23, 2020, 5:56 p.m.
Updated: Oct. 23, 2020, 7:36 p.m.
0
5
User avatar
daarojaspa