Given an unsorted linked list, and without using a temporary buffer, write a method that will delete any duplicates from the linked list?

Submitted by: Muhammad
Complexity: O(n^2) If you can sort the list in O(nlogn) then it will take O(nlogn).
Submitted by: Muhammad

Read Online Data Structure Linked list Job Interview Questions And Answers