Skip to content
Advertisement

Adding two linked lists in java solution results in time limit exceeded

the problem on leetcode: https://leetcode.com/problems/add-two-numbers/ My solution results in time limit exceeded and I cannot understand what’s wrong with my code:

JavaScript

Advertisement

Answer

It looks like you are never resetting the carry (c) back to 0.

Therefore, once you set it to a non-zero value, the loop will never end.

You should reset it to 0 at the start of each iteration of the while loop.

Or you can change

JavaScript

to

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement