+ 4
def convert(num): if num == 0: return 0 else: return (num % 2 + 10 * convert(num // 2))
It's recursion example in the lesson but i am unable to understand how it's working please help me
13
Answer
s