Eliminate duplicates from LL
Eliminate duplicates from LL Send Feedback You have been given a singly linked list of integers where the elements are sorted in ascending order. Write a function that removes the consecutive duplicate values such that the given list only contains unique elements and returns the head to the updated list. Input format : The first line contains an Integer 't' which denotes the number of test cases or queries to be run. Then the test cases follow. The first and the only line of each test case or query contains the elements(in ascending order) of the singly linked list separated by a single space. Remember/Consider : While specifying the list elements for input, -1 indicates the end of the singly linked list and hence, would never be a list element. Output format : For each test case/query, print the resulting singly linked list of integers in a row, separated by a single space. Output for every test case will be printed in a seperate line. Constraints : 1 <= t...