Skip to content

Commit 09da06c

Browse files
committed
test
1 parent a1baaf5 commit 09da06c

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

leet_115 2.cpp

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#include<stdio.h>
2+
#include<stdlib.h>
3+
#include<iostream>
4+
#include<math.h>
5+
#include<vector>
6+
#include<string>
7+
#include<stack>
8+
#include<algorithm>
9+
#include<queue>
10+
#include<limits>
11+
#include<numeric>
12+
#include<sstream>
13+
14+
using namespace std;
15+
16+
class Solution {
17+
public:
18+
int c() {
19+
cout << "test" << endl;
20+
return 0;
21+
}
22+
23+
};
24+
25+
int main() {
26+
Solution s;
27+
s.c();
28+
29+
return 0;
30+
}

0 commit comments

Comments
 (0)