* [LeetCode] Remove Duplicates from Sorted List - JavaScript

이은빈 EUNBIN·2021년 4월 22일
0
post-thumbnail

👩🏻‍💻 문제

LeetCode #83 Remove Duplicates from Sorted List



👩🏻‍💻 풀이

var deleteDuplicates = function(head) {
    if (!head) return null;
    let prev = head, next = head.next;

    while (next) {
        if (prev.val === next.val) {
            prev.next = next.next;
        } else {
            prev = prev.next;
        }
    	next = next.next;
    }

    return head;
};

코드 설명

100% 이해 못함...
다시 보자 보자 보자

profile
Frontend Engineer & Value Creator

0개의 댓글