Question: JAVA - Write a function in your Main class LinkedList mergeLists(LinkedList list1, LinkedList list2) - given two ordered linked lists of integers , merge the
JAVA - Write a function in your Main class LinkedList
- list1 => 1 -> 3 -> 7 -> 8, list2 => 2 -> 5 -> 7 -> 10, returns 1 -> 2 -> 3 -> 7 -> 7 -> 8 -> 10
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
