LeetCode 83. Remove Duplicates from Sorted List
# 思路
如果當前node與下一個node相同,將當前node接到下下一個node
# 參考程式碼
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x,
more...







