Module remove_elements

Source
Expand description

§203. 移除链表元素

难度 简单

删除链表中等于给定值 val 的所有节点。

§示例:

输入: 1->2->6->3->4->5->6, val = 6
输出: 1->2->3->4->5

See leetcode

Structs§

Solution