diff options
| author | Omar Magdy <omar.professional8777@gmail.com> | 2022-06-06 18:16:54 +0200 |
|---|---|---|
| committer | Omar Magdy <omar.professional8777@gmail.com> | 2022-06-06 18:16:54 +0200 |
| commit | b1828ab2fe7eaedc3104e5c2b46eb08940299738 (patch) | |
| tree | 8efcd860be9354e9532eec9870892ab232fa2f36 /codechef/collegLife2/main.cpp | |
| parent | 5b2d58b6f42a19b4c779627d71a1158e4376699d (diff) | |
| download | competitive-programming-b1828ab2fe7eaedc3104e5c2b46eb08940299738.tar.xz competitive-programming-b1828ab2fe7eaedc3104e5c2b46eb08940299738.zip | |
Solved some problems
Diffstat (limited to 'codechef/collegLife2/main.cpp')
| -rw-r--r-- | codechef/collegLife2/main.cpp | 16 |
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); + + + } +} |
