Skip to content

Instantly share code, notes, and snippets.

@mayankt18
Created February 25, 2022 17:28
Show Gist options
  • Save mayankt18/c4629300d7d75e7f739bf7d2afd86e17 to your computer and use it in GitHub Desktop.
Save mayankt18/c4629300d7d75e7f739bf7d2afd86e17 to your computer and use it in GitHub Desktop.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define deb(x) cout << #x << "=" << x << endl
#define deb2(x, y) cout << #x << "=" << x << "," << #y << "=" << y << endl
#define fo(i,n) for(i=0;i<n;i++)
#define fl(i,l,n) for(i=l;i<n;i++)
#define pb push_back
#define strev(a, b) sort(a, b, greater<>())
typedef pair<int, int> pii;
typedef pair<ll, ll> pl;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef vector<pii> vpii;
typedef vector<vi> vvi;
typedef vector<pl> vpl;
void solve() {
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin>>t;
while(t--) {
solve();
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment