Community Profile

photo

Osahon Usuanlele


Last seen: mehr als 3 Jahre vor Aktiv seit 2020

Followers: 0   Following: 0

Statistiken

  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Out of memory Problem [Problem 2 , Project Euler (Sum of even Fibonacci numbers)]
def fibs(num): arr = [1,1] count = 1 while count < num - 1: arr.append(arr[len(arr)-1] + arr[len(arr)-2]) count+=1 ...

mehr als 3 Jahre vor | 0