Files
lc/main.cpp
2022-11-03 01:13:34 +08:00

22 lines
311 B
C++

#include <iostream>
#include <vector>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
class Solution {
public:
vector<int> reversePrint(ListNode* head) {
}
};
int main(int, char**) {
std::cout << "Hello, world!\n";
}