diff --git a/Readme Generator Assets/Intro section.txt b/Readme Generator Assets/Intro section.txt deleted file mode 100644 index 2da02de..0000000 --- a/Readme Generator Assets/Intro section.txt +++ /dev/null @@ -1,12 +0,0 @@ -# Codeforces Solutions - -This repository contains my solutions of Codeforces problems. They are in C++ language. - -#### If this repository helped you out, please consider giving it a :star: - -
- -## Index -#### Sorted by Problem ID -| Index | Problem ID | Problem Name | Question | Solution | -| :-----: | :--------: | :----------: | :------: | :------: | \ No newline at end of file diff --git a/Readme Generator Assets/Outro section.txt b/Readme Generator Assets/Outro section.txt deleted file mode 100644 index 4e7ce49..0000000 --- a/Readme Generator Assets/Outro section.txt +++ /dev/null @@ -1,9 +0,0 @@ - - -
- -## About Me :eyes: - -I am Shazid Mashrafi. -I am currently studying Computer Science and Engineering & trying to work my way up in the programming world. -Visit my [Website](https://shazidmashrafi.com) and [Codeforces](https://codeforces.com/profile/ShazidMashrafi) account. \ No newline at end of file diff --git a/Template/CPTemp.cpp b/Template/CPTemp.cpp index fe4805b..ddbe61d 100644 --- a/Template/CPTemp.cpp +++ b/Template/CPTemp.cpp @@ -1,33 +1,19 @@ #include using namespace std; - -#define FAST_IO (ios_base:: sync_with_stdio(false),cin.tie(NULL)); -#define ll long long -#define ull unsigned long long -#define endl '\n' -#define ff first -#define ss second -#define pb push_back -#define all(x) x.begin(), x.end() -#define sz(x) (int)(x).size() -#define yes cout<<"YES"<>= 1; } return ans; } -bool isPrime(ll n) { if(n <= 1) return false; for(ll i = 2; i*i <= n; i++) if(n % i == 0) return false; return true; } - +#define ll long long +#define ull unsigned long long +#define endl '\n' +#define ff first +#define ss second +#define pb push_back +#define all(x) x.begin(), x.end() +#define sz(x) (int)(x).size() +#define yes cout<<"YES"<>=1;} return ans;} #ifndef ONLINE_JUDGE #define dbg(x...) cerr << #x << " : "; _print(x) #else @@ -51,9 +37,8 @@ void solve() signed main() { - FAST_IO; + FAST; int TC = 1; //cin >> TC; - while (TC--) - solve(); + while (TC--) solve(); } \ No newline at end of file