An open API service indexing awesome lists of open source software.

https://github.com/alpha74/icc

My CodeChef submissions. Maintained from 2020 onwards.
https://github.com/alpha74/icc

algorithms codechef codechef-problems codechef-solutions coding cpp data-structures programming

Last synced: 9 months ago
JSON representation

My CodeChef submissions. Maintained from 2020 onwards.

Awesome Lists containing this project

README

          

![Codechef](https://cdn.codechef.com/sites/all/themes/abessive/cc-logo-sd.svg)

# 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

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