1function removeDuplicates(head):
2 current = head
3 while current is not null and current.next is not null:
4 if current.value == current.next.value:
5 current.next = current.next.next
6 else: current = current.next
7 return head
No pseudocode line selected.