Subtract Two Linkedlist

medium
1. You are give two single linkedlist of digits. 
2. The most significant digit comes first and each of their nodes contain a single digit. Subtract the two numbers and return it as a linked list.
3. You may assume the two numbers do not contain any leading zero, except the number 0 itself.
4. any list can be larger in term of number.

Input Format

1->2->3->4->5->6->7->null 7->8->9->null

Output Format

1->2->3->3->7->7->8->null

Constraints

0 <= N <= 10^6

Notice

Try First, Check Solution later

1. You should first read the question and watch the question video.
2. Think of a solution approach, then try and submit the question on editor tab.
3. We strongly advise you to watch the solution video for prescribed approach.

Example

Input
6
1 8 0 5 4 6 
1
1 
Output
1 8 0 5 4 5
Previous
Add Two Linkedlist
Next
Multiply Two Linkedlist

Related Questions