MCPcopy Create free account
hub / github.com/Ainevsia/Leetcode-Rust / ListNode

Class ListNode

86. Partition List/Solution.cpp:9–13  ·  view source on GitHub ↗

Definition for singly-linked list.

Source from the content-addressed store, hash-verified

7
8// Definition for singly-linked list.
9struct ListNode {
10 int val;
11 ListNode *next;
12 ListNode(int x) : val(x), next(NULL) {}
13};
14
15class Solution {
16public:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected