Challenge 8: Remove Duplicates from Linked List
In this lesson, you must figure out the C# solution for removing duplicates from a linked list.
We'll cover the following...
Problem statement
Now, you will be implementing the RemoveDuplicates()
function. When a linked list is passed to this function, it removes any node (which is a duplicate of another existing node). ...