Categorygithub.com/szhou12/leetcode-goleetcode0083-Remove-Duplicates-from-Sorted-List
package
0.0.0-20241220224003-b7cf03a90b2b
Repository: https://github.com/szhou12/leetcode-go.git
Documentation: pkg.go.dev

# README

83. Remove Duplicates from Sorted List

Solution idea

Linked List traversal. 要注意检查是否把后面重复元素成功断开.

Time complexity = $O(n)$