Skip to content

Commit 781fd04

Browse files
authored
Create Readme.md
1 parent dece075 commit 781fd04

File tree

1 file changed

+4
-0
lines changed
  • Linked_List/082.Remove-Duplicates-from-Sorted-List-II

1 file changed

+4
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)