README ¶ 203. Remove Linked List Elements 题目 Remove all elements from a linked list of integers that have value val. Example Given: 1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6, val = 6 Return: 1 --> 2 --> 3 --> 4 --> 5 Credits:Special thanks to @mithmatt for adding this problem and creating all test cases. 解题思路 见程序注释 Expand ▾ Collapse ▴ Documentation ¶ Index ¶ type ListNode Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type ListNode ¶ type ListNode = kit.ListNode Source Files ¶ View all Source files remove-linked-list-elements.go Click to show internal directories. Click to hide internal directories.