- Maintained from 2020 onwards.
- Repo names are the first letters of problem code.
- Eg: for problem code TOWIN, go to T/TOWIN.cpp
- For format in which
T
(for number of test cases) is given.
#include <bits/stdc++.h>
using namespace std ;
#define ll long long int
#define ull unsigned long long int
void beeblebrox() ;
int main()
{
ios_base::sync_with_stdio( 0 ) ;
cin.tie( 0 ) ;
int t ;
cin >> t ;
while( t-- ) beeblebrox() ;
return 0 ;
}
void beeblebrox()
{
}