Problem
Submissions

Problem: Remove Duplicates from Sorted List

Statement

Given the head of a sorted linked list, remove all duplicates such that each element appears only once, and return the list in sorted order.

Constraints:

  • 00 \leq n 300\leq 300, where n is the number of nodes in the list.

  • 100-100 \leq Node.val 100\leq 100

  • The list is guaranteed to be sorted in ascending order.

Problem
Submissions

Problem: Remove Duplicates from Sorted List

Statement

Given the head of a sorted linked list, remove all duplicates such that each element appears only once, and return the list in sorted order.

Constraints:

  • 00 \leq n 300\leq 300, where n is the number of nodes in the list.

  • 100-100 \leq Node.val 100\leq 100

  • The list is guaranteed to be sorted in ascending order.