DSA-Questions
DSA-Questions copied to clipboard
Merge 2 Sorted Linked List
trafficstars
Hi, I am a participant of Hacktoberfest. I would like to add this question of merging 2 linked list. Kindly assign me this issue under hacktoberfest. Thank you. Question: Write a code to merge 2 sorted linked list Input1 = 1->5->7->10->NULL Input2 = 2->3->6->NULL
Output = 1->2->3->5->6->7->10->NULL
I would like to this question , Can u pls assign me this task