LeetCode içerisinde bulunan “Remove Duplicates from Sorted List”‘ sorusunun açıklaması ve çözümü.
🔥 LeetCode 83. Remove Duplicates from Sorted List: https://leetcode.com/problems/remove-duplicates-from-sorted-list/
🔥 Bahsi geçen Linked List yazısı: https://www.cs.cmu.edu/~adamchik/15-121/lectures/Linked%20Lists/linked%20lists.html
➡️ Problem açıklaması:
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