MCPcopy 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
11struct ListNode {
12 int val;
13 ListNode *next;
14 ListNode(int x) : val(x), next(NULL) {}
15};
16
17class Solution {
18public:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected