Day 24: More Linked Lists - HackerRank 30 days of code solution
Objective More Linked List. Task A Node class is provided for you in the editor. A Node object has an integer data field, , and a Node instance pointer, , pointing to another node (i.e.: the next node in a list). A removeDuplicates function is declared in your editor, which takes a pointer to the node of a linked list as a parameter. Complete removeDuplicates so that it deletes any duplicate nodes from the list and returns the head of the updated list. Note: The pointer may be null, indicating that the list is empty. Be sure to reset your pointer when performing deletions to avoid breaking the list. Input Format You do not need to read any input from stdin. The following input is handled by the locked stub code and passed to the removeDuplicates function: The first line contains an integer, , the number of nodes to be inserted. The su...