adityaarakeri / Interview-solved

🌴 Solutions to few of the interview coding challenges in Python 🐍
MIT License
40 stars 62 forks source link

addition of numbers linkedlist python #73

Closed csendranshi closed 3 years ago

csendranshi commented 3 years ago

Python program to add 2 numbers using Linked Lists. Considering the 2 numbers as 2 linked lists with each node containing the digits, the program adds them and also takes into consideration the carry generated. Problem statement from GeeksForGeeks interview preparation guide. #58