Skip to content
/ iCC Public

My CodeChef submissions. Maintained from 2020 onwards.

Notifications You must be signed in to change notification settings

alpha74/iCC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published

Languages