题目:https://leetcode.com/problems/add-two-numbers/
代码(github):https://github.com/illuz/leetcode
求两个 List 相加产生的新的一个 List。
直接模拟就可以了。
(English version)
Link:
Problem: https://leetcode.com/problems/add-two-numbers/
Newest solutions in my Github: https://github.com/illuz/leetcode
Analysis:
Just simulation is enough.