“Urutan Tribonacci Python” Kode Jawaban

Urutan Fibonacci Python

# WARNING: this program assumes the
# fibonacci sequence starts at 1
def fib(num):
  """return the number at index num in the fibonacci sequence"""
  if num <= 2:
    return 1
  return fib(num - 1) + fib(num - 2)


print(fib(6))  # 8
Blue-eyed Barracuda

Urutan Tribonacci Python

def tribonacci(signature, n):
  res = signature[:n]
  for i in range(n - 3): res.append(sum(res[-3:]))
  return res
Code language: Python (python)
Ivan Nankov

Jawaban yang mirip dengan “Urutan Tribonacci Python”

Pertanyaan yang mirip dengan “Urutan Tribonacci Python”

Lebih banyak jawaban terkait untuk “Urutan Tribonacci Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya