From bfb64d5b4b7c067ea67a23417d555744c1ccf0d3 Mon Sep 17 00:00:00 2001 From: Yeashu <67820770+Yeashu@users.noreply.github.com> Date: Wed, 30 Oct 2024 11:54:14 +0530 Subject: [PATCH] Added my minimal competitive programming template --- C++/CP-template.cpp | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 C++/CP-template.cpp diff --git a/C++/CP-template.cpp b/C++/CP-template.cpp new file mode 100644 index 0000000..b2c9e1f --- /dev/null +++ b/C++/CP-template.cpp @@ -0,0 +1,31 @@ +#include "bits/stdc++.h" + +#define int long long +#define endl '\n' +#define vi vector +#define all(x) x.begin(), x.end() +#define f(i,s,e) for(long long i=s;i=s;i--) +#define dbg(v) cout << "Line(" << __LINE__ << ") -> " << #v << " = " << (v) << endl; + + +using namespace std; + +int T = 0; + +void solve(){ + +} + +int32_t main(){ + ios::sync_with_stdio(false); + cin.tie(nullptr); + //cout << fixed << setprecision(6) + if(T && cin >> T){ + while(T--){ + solve(); + } + } + else solve(); + } \ No newline at end of file