My LeetCode grinding. Trying to do a problem a day.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213 |
- Given a sorted linked list, delete all duplicates such that each element appear only once.
-
- Example 1:
-
- Input: 1->1->2
- Output: 1->2
-
- Example 2:
-
- Input: 1->1->2->3->3
- Output: 1->2->3
-
|