๐ป Coding Problems Solving/Two Pointers | Binary Search| LinkedList
[LeetCode] Remove Duplicates from Sorted List II
1. ๋ฌธ์ : https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii/description/ 2. ํ์ด ํ์ฌ๊ฐ๊ณผ ๋ค์ ๊ฐ์ด ๊ฐ์ผ๋ฉด ์ปค์ ๊ณ์ ์ด๋ํด์ฃผ๊ณ ๋ค์ ๊ฐ๊ณผ ๋ค๋ฅผ๋ ์ด์ ๊ฐ์ next์ ์ง๊ธ์ด ๊ฐ์์ง ํ์ธํด์ฃผ๊ณ ๊ฐ๋ค๋ฉด ๋ค์๊ฐ & ํ์ฌ๊ฐ ๋ค์์ผ๋ก ๋๊ธฐ๊ณ , ๋ค๋ฅด๋ฉด ๋ค์๊ฐ์ next๋ฅผ ํ์ฌ๊ฐ์ next๋ก ๋ง์ถฐ์ค๋ค. 3. ์ฝ๋ /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode() {} * ListNode(int val) { this.val = val; } * ListNode(int val, ListNode..
2023. 7. 12. 21:40
์ต๊ทผ๋๊ธ