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