-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcpp.sublime-snippet
More file actions
44 lines (36 loc) · 971 Bytes
/
Copy pathcpp.sublime-snippet
File metadata and controls
44 lines (36 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<snippet>
<content><![CDATA[
#include <bits/stdc++.h>
using namespace std;
#define ll long long int
#define ld long double
#define DEBUG(x) cout << '>' << #x << ':' << x << endl;
#define out(array,a,b) {for(ll i=a;i<=b;i++){cout<<array[i]<<" ";};cout<<endl;}
#define rep(i,a,b) for(i=a;i<=b;i++)
#define rev(i,a,b) for(i=a;i>=b;i--)
#define pll pair<ll,ll>
#define vll vector<ll>
#define mll map<ll,ll>
#define sll set<ll>
#define stll stack<ll>
#define qll queue<ll>
#define vpll vector<pll>
#define F first
#define S second
#define pb push_back
#define ps push
#define mp make_pair
#define NMAX 100005
#define MOD 1000000007
int main(){
std::ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
ll i,j;
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>code</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>