所在目录:
教材与参考资料 / 程序设计类 / 数据结构&算法 / 算法 / 面试与力扣题目详解 / Leetcode题目和解答 / java-leetcode / remove-duplicates-from-sorted-list
下载地址:
文本预览:
## Loop invariant
loop the linked list, if the `node.val` equals to the `current.val` ignore it,
append it to the final linked list otherwise.
点赞
回复