ASV Global interview question

Write a function to delete a duplicate node within a linked list.

Interview Answer

Anonymous

14 Jun 2018

Used the brute force O(n^2) solution. They were looking for you to use a set, or some kind of map data container.