cmake build

This commit is contained in:
2022-11-03 01:13:34 +08:00
parent 3bd8e55ce0
commit f198c184ad
4 changed files with 34 additions and 1 deletions

21
main.cpp Normal file
View File

@@ -0,0 +1,21 @@
#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";
}