You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: