aboutsummaryrefslogtreecommitdiff
path: root/codechef/collegLife2/main.cpp
diff options
context:
space:
mode:
authorOmar Magdy <omar.professional8777@gmail.com>2022-06-06 18:16:54 +0200
committerOmar Magdy <omar.professional8777@gmail.com>2022-06-06 18:16:54 +0200
commitb1828ab2fe7eaedc3104e5c2b46eb08940299738 (patch)
tree8efcd860be9354e9532eec9870892ab232fa2f36 /codechef/collegLife2/main.cpp
parent5b2d58b6f42a19b4c779627d71a1158e4376699d (diff)
downloadcompetitive-programming-b1828ab2fe7eaedc3104e5c2b46eb08940299738.tar.xz
competitive-programming-b1828ab2fe7eaedc3104e5c2b46eb08940299738.zip
Solved some problems
Diffstat (limited to 'codechef/collegLife2/main.cpp')
-rw-r--r--codechef/collegLife2/main.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/codechef/collegLife2/main.cpp b/codechef/collegLife2/main.cpp
new file mode 100644
index 0000000..0e72523
--- /dev/null
+++ b/codechef/collegLife2/main.cpp
@@ -0,0 +1,16 @@
+#include<bits/stdc++.h>
+
+using namespace std;
+
+int main () {
+ ios_base::sync_with_stdio(false);
+ cin.tie(NULL);
+ int tt;
+ cin >> tt;
+ while(tt--){
+ int s;
+ vector<int> q(s);
+
+
+ }
+}