Skip to content

Commit

Permalink
Update template.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonber committed Aug 28, 2015
1 parent 296062a commit 2b64b63
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions template.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
#include<bits/stdc++.h>
using namespace std;
#define __ ios_base::sync_with_stdio(0); cin.tie(0);

#define endl '\n'
#define fr(i,j,n) for(int i=j;i<n;i++)
#define FR(i,n) fr(i,0,n)
#define foreach(it, x) for(typeof (x).begin() it = (x).begin(); it != (x).end(); ++it)
#define foreach(it, x) for (__typeof (x).begin() it = (x).begin(); it != (x).end(); ++it)
#define all(x) x.begin(),x.end()
#define D(x) cout << #x " = " << (x) << endl;

Expand All @@ -18,10 +15,6 @@ template <class T> int toInt(const T &x)
int dx[8] = {-1,-1,-1,0,1,1, 1, 0};
int dy[8] = {-1, 0, 1,1,1,0,-1,-1};

typedef long long ll;
typedef vector<int> vi;
typedef pair<int,int> pii;

int main(){

return 0;
Expand Down

0 comments on commit 2b64b63

Please sign in to comment.