Given a linked list with n nodes and each node having a link to it's next node and a link to it's next node's next node, write an expression to find the no of ways to traverse from the first node to the last one.
Sigiloso
If Ti is the no of ways to traverse list with i nodes then Tn = Tn-1 + Tn-2 where T1 = T2 = 1