geekelo / geekelo/dsa_practice
Add two sums
Open
- Dominant language
- No language data
- Stars
- 1
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
var addTwoNumbers = function(l1, l2) {
// if l1.next_node exists
};
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.