nirgn975 / challenges

My solutions for random coding challenges 💪

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

My code is right but it's not executing

bhavanikasiviswanathan opened this issue · comments

def tribonacci(signature,n)

   for x in range (n-len(a)):
      b= a[0]+a[1]+a[2]
      a[0] = a[1]
      a[1] = a[2]
      a[2] = b
      signature.append(b)
   print (signature)

could you please tell me why it's not executing in codewars

commented

not calling function