Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 643 Bytes

README.md

File metadata and controls

43 lines (28 loc) · 643 Bytes

Codechef

My CodeChef Submissions

alpha74

  • Maintained from 2020 onwards.
  • Repo names are the first letters of problem code.
    • Eg: for problem code TOWIN, go to T/TOWIN.cpp

Boilerplate

  • 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()
{
}