Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Title: Add Solution for "Add Two Numbers Using Linked Lists" Problem #20

Closed
janWICKEDpro opened this issue Oct 9, 2024 · 2 comments
Closed
Labels
Assigned📋 This issue has been assigned to you! Closed:🚫 This issue or PR is closed due to invalidity or prolonged inactivity and lack of updates. good first issue Good for newcomers hacktoberfest2024 Your contribution is part of Hacktoberfest 2024! 🎉 No_Update It's been so long you are not responding to this issue so we are going to close the issue soon.

Comments

@janWICKEDpro
Copy link

Initiative (Required)

Hacktoberfest 2024 🎃

Is your proposal related to a problem? Please describe.

PROBLEM 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.

Example 1

Input: l1 = [2,4,3], l2 = [5,6,4]
Output: [7,0,8]
Explanation: 342 + 465 = 807.

Example 2

Input: l1 = [9,9,9,9,9,9,9], l2 = [9,9,9,9]
Output: [8,9,9,9,0,0,0,1]

Constraints

  • The number of nodes in each linked list is in the range [1, 100]
  • 0 <= Node.val <= 9
  • It is guaranteed that the list represents a number that does not have leading zeros.

Add any other context or screenshots about the proposal request here.

Screen Shot 2024-10-09 at 13 30 43

I'm interested in contributing to this repository as part of Hacktoberfest and would love the opportunity to work on this issue. @Kushal997-das Could you please assign it to me?

Copy link

github-actions bot commented Oct 9, 2024

@janWICKEDpro

It's great having you contribute to this project

Thanks for opening this Issue 🙌 , Welcome to SkillShow 💖 We will review everything and get back to you.
Make sure to give a star to this repo before making a fork! Thank you :)

@Kushal997-das Kushal997-das added good first issue Good for newcomers Assigned📋 This issue has been assigned to you! hacktoberfest2024 Your contribution is part of Hacktoberfest 2024! 🎉 labels Oct 13, 2024
@Kushal997-das Kushal997-das added No_Update It's been so long you are not responding to this issue so we are going to close the issue soon. Closed:🚫 This issue or PR is closed due to invalidity or prolonged inactivity and lack of updates. labels Oct 31, 2024
Copy link

github-actions bot commented Nov 1, 2024

Hi @janWICKEDpro 👋, your issue #20 has been successfully closed ✅. Thank you for your valuable contribution! 🙌

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Assigned📋 This issue has been assigned to you! Closed:🚫 This issue or PR is closed due to invalidity or prolonged inactivity and lack of updates. good first issue Good for newcomers hacktoberfest2024 Your contribution is part of Hacktoberfest 2024! 🎉 No_Update It's been so long you are not responding to this issue so we are going to close the issue soon.
Projects
None yet
Development

No branches or pull requests

2 participants