Created
February 25, 2022 17:28
-
-
Save mayankt18/c4629300d7d75e7f739bf7d2afd86e17 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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