Merge Sorted Linked Lists

working correct on sublime text and coding blocks ide but showing run time error when submittins the solution of merge two sorted linked list…
here is the code.
https://ide.codingblocks.com/s/46444

Hey Abhishek, your code will not work if length of any array is 0. for eg. check for this input
input :
1
4
1 2 3 4
0

output should be : 1 2 3 4

1 Like