Skip to content

Commit c1baaff

Browse files
author
Liang Wang
committed
simple template for leetcode
1 parent 9922fd1 commit c1baaff

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

templates/leetcode.cpp

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#include <bits/stdc++.h>
2+
using namespace std;
3+
#define FOR(i, n) for (int i = 0; i < (int)n; ++i)
4+
typedef long long ll;
5+
typedef pair<int, int> pii;
6+
7+
class Solution {
8+
9+
};
10+
11+
int main() {
12+
Solution solution;
13+
return 0;
14+
}

0 commit comments

Comments
 (0)