Skip to content

Commit d18d781

Browse files
committed
add follow up question comment
1 parent 2e9e5f6 commit d18d781

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Python/chapter02/2.5 - Sum Lists/miguel_2.5_soln.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
Input: (7 -> 1 -> 6) + (5 -> 9 -> 2). That is, 617 + 295
1212
Result: 2 -> 1 -> 9. That is, 912
1313
FOLLOW UP
14+
Suppose the digits are stored in forward order.
15+
Repeat the above problem.
16+
EXAMPLE
17+
Input: (6 -> 1 -> 7) + (2 -> 9 -> 5). That is, 617 + 295
18+
Result: 9 -> 1 -> 2. That is, 912
1419
"""
1520
import unittest
1621

0 commit comments

Comments
 (0)