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...




