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.
- Host: GitHub
- URL: https://github.com/alpha74/icc
- Owner: alpha74
- Created: 2020-03-27T17:15:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-29T15:11:24.000Z (over 2 years ago)
- Last Synced: 2025-03-27T06:12:19.655Z (9 months ago)
- Topics: algorithms, codechef, codechef-problems, codechef-solutions, coding, cpp, data-structures, programming
- Language: C++
- Homepage:
- Size: 131 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

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