We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dece075 commit 781fd04Copy full SHA for 781fd04
Linked_List/082.Remove-Duplicates-from-Sorted-List-II/Readme.md
@@ -0,0 +1,4 @@
1
+### 082.Remove-Duplicates-from-Sorted-List-II
2
+
3
+注意实现上的小技巧。对于```... dummy->B1->B2->C1->C2-> D....```,我们做法是立足dummy,看到有若干个相同数值的B1、B2,就跳过他们,令```dummy->next = C1```。同样地,继续立足dummy,看到有若干个相同数值的C1、C2,就跳过他们,令```dummy->next = D```。
4
0 commit comments