Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Ainevsia/Leetcode-Rust
/ ListNode
Class
ListNode
83. Remove Duplicates from Sorted List/Solution.cpp:11–15 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
9
10
11
struct ListNode {
12
int val;
13
ListNode *next;
14
ListNode(int x) : val(x), next(NULL) {}
15
};
16
17
class Solution {
18
public:
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected