summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormzuenni <mzuenni@users.noreply.github.com>2023-06-15 18:45:46 +0200
committerGitHub <noreply@github.com>2023-06-15 18:45:46 +0200
commit91f4a2d61bbaf9d992a72fdfdab1d4c8eecbbaed (patch)
tree90b02041fd7d0292570ee0a7d0b88626655bf7f5
parente3a5bfeab3faa50fee3c3404fc828ebe751f961e (diff)
Update template.cpp
-rw-r--r--template/template.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/template/template.cpp b/template/template.cpp
index 068a1b9..88bdd56 100644
--- a/template/template.cpp
+++ b/template/template.cpp
@@ -1,11 +1,14 @@
#include <bits/stdc++.h>
using namespace std;
-#define ll long long
-#define nl '\n'
+
#define tsolve int t; cin >> t; while(t--) solve
+#define debug(x) cerr << __LINE__ << ": "#x" = " << (x) << endl
+#define nl '\n'
#define all(x) ::begin(x), ::end(x)
#define sz(x) (ll)::size(x)
-#define debug(x) cerr << __LINE__ << ": "#x" = " << (x) << endl
+
+using ll = long long;
+using ld = long double;
void solve() {}