photo

Osahon Usuanlele


Last seen: 3 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

  • First Answer

查看徽章

Feeds

排序方式:

已回答
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 ...

3 years 前 | 0