
Asked in Exotel
Given a non-negative number represented as a linked list, add one to it. The digits are stored such that the most significant digit is at the head of the list.

AnswerBot
2y
To add one to a linked list, traverse the list and add 1 to the last node's value. If it overflows, create a new node.
Traverse the linked list until the last node
Add 1 to the value of the last node
If ...read more
Help your peers!
Add answer anonymously...
Interview Questions Asked to SDE-1 Position at Other Companies
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

