Adding 2 linklists

Provided 2 linklist which represent numbers in reverse order.Add the 2 linklist and let the result also be in reverse order.
Ex:
representing 111321 and 543 in reverse order using linklist
1->2->3->1->1->1
3->4->5
————————-
4->6->8->1->1->1
————————
[gist https://gist.github.com/vishnujayvel/5888524]

Leave a comment