Problem Statement:
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.
Problem Link:
https://leetcode.com/problems/add-two...
0:00 - Brute Force(Theory)
4:35 - Brute Force(Solution)
Source Code:
https://solvingskill.blogspot.com/202...
https://www.solvingskill.com/2024/07/...
leetcode 2
#java #hashmap #CodingInterview #leetcode #leetcodesolution