Frage im Vorstellungsgespräch bei NVIDIA

Write code about the Fibonacci series

Antwort im Vorstellungsgespräch

Anonym

4. Nov. 2024

def fibo(n: int): if n < 1: return 1 return fibo(n-1) + fibo(n-2)

1