...
/Challenge 8: Remove Duplicates From Linked List Using Hashing
Challenge 8: Remove Duplicates From Linked List Using Hashing
In this lesson, you must dicover the C# solution for removing duplicates from a linked list using hashing.
We'll cover the following...
Problem statement
You will implement the removeDuplicates()
function. When a linked list is passed to this function, it removes any node, which is a duplicate of another existing node.
Input
This is a linked list.
Output
This is a list ...