Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Kata is unpublished until i fix some serious issues
Rules are unclear. So, I(or we?) have lot of questions:
What's the tuple? Do you mean each pair of two adjacent fib number? like (0,1),(1,2),(3,5)... right?
So, the kata asks to sum the elements between each pair of (0,1),(1,2),(3,5)...? For (3,5), we should calculate arr[3]+arr[4]+arr[5], right?
If a pair (a,b), a < arr.length but b not, what to do then?
Please explain the following two random test cases:
0 or 1
, and too many testcases..