Merge tow sorted linked list #270
Labels
C/C++
good first issue
Good for newcomers
hacktoberfest
Contribution for hacktoberfest
Java
Up-for-Grabs
Feature ✅
Description
Given 2 sorted linked lists, merge the lists to a single sorted linked list.
Example
List1: 2 -> 4 -> 5 -> 6 -> 8 -> 9
List2: 1 -> 3 -> 7
Merged List:
1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8 -> 9
Checklist:
Contributors are supposed to mention their coding language while asking for assignment
The text was updated successfully, but these errors were encountered: