Problem Solution We can easily see that this problem is just elementary school math, except that the digits are divided into nodes in the linked lists. Turn each list into an integer, then add the two numbers up. Finally, turn the sum into a linked list by iterating through the digits. Time Complexity O(N1+N2), where N1 and N2 are the numbers of elements in each input list. Space Complexity O(1)..