Skip to content

Latest commit

 

History

History
47 lines (21 loc) · 595 Bytes

File metadata and controls

47 lines (21 loc) · 595 Bytes

中文文档

Description

Remove all elements from a linked list of integers that have value val.

Example:

Input:  1->2->6->3->4->5->6, val = 6

Output: 1->2->3->4->5

Solutions

Python3

Java

...