Hi all,
As suggested, a separate thread per weekly challenge. This week a medium difficulty problem courtesy of the question picker:
445. Add Two Numbers II - https://leetcode.com/problems/add-two-numbers-ii/#/description
How it works:
Good luck!
As suggested, a separate thread per weekly challenge. This week a medium difficulty problem courtesy of the question picker:
445. Add Two Numbers II - https://leetcode.com/problems/add-two-numbers-ii/#/description
You are given two non-empty linked lists representing two non-negative integers. The most significant digit comes first and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
Follow up:
What if you cannot modify the input lists? In other words, reversing the lists is not allowed.
Example:
Code:Input: (7 -> 2 -> 4 -> 3) + (5 -> 6 -> 4) Output: 7 -> 8 -> 0 -> 7
How it works:
- We use the random question picker, and all attempt it, one question a week.
- No cheating/looking at the editorial solution until your soln is accepted on leetcode, and you're convinced you can't get it any quicker.
- Language is up to you, this may help people appreciate other languages as well
- Only post your time taken, language, and percentage of submissions beaten at first. Use spoiler tags for your code.
Good luck!
Last edited: