Remove duplicate LinkNodes from a sorted LinkNode list.
Utilisateur anonyme
Store the first node value and ptr in a variable and then use a while loop to iterate over the list until ptr is null and compare the next Node’s value with the previously known non-duplicate and update the ptr reference as needed.