Skip to content

Latest commit

 

History

History
 
 

002.Add_Two_Numbers

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

002.Add_Two_Numbers (Medium)

链接

题目:https://leetcode.com/problems/add-two-numbers/
代码(github):https://github.com/illuz/leetcode

题意

求两个 List 相加产生的新的一个 List。

分析

直接模拟就可以了。


(English version)

002.Add_Two_Numbers (Medium)

Link:
Problem: https://leetcode.com/problems/add-two-numbers/
Newest solutions in my Github: https://github.com/illuz/leetcode

Analysis
Just simulation is enough.