diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2023-02-22 20:18:04 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2023-02-22 20:18:04 +0200 |
| commit | ef9dfb5d8bfa705a0c056a2652d298e5ebb763fb (patch) | |
| tree | a3ae50170dcaa0982a2680fb9df2c1a8ec179bb4 /codeforces/Stripes | |
| parent | 6fd4c8747f798b62428ca020171596b8636a7a4c (diff) | |
| download | competitive-programming-ef9dfb5d8bfa705a0c056a2652d298e5ebb763fb.tar.xz competitive-programming-ef9dfb5d8bfa705a0c056a2652d298e5ebb763fb.zip | |
Solved a bunch of problems
Diffstat (limited to 'codeforces/Stripes')
| -rwxr-xr-x | codeforces/Stripes/main.cpp | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/codeforces/Stripes/main.cpp b/codeforces/Stripes/main.cpp index 91048d4..d9454c7 100755 --- a/codeforces/Stripes/main.cpp +++ b/codeforces/Stripes/main.cpp @@ -1,4 +1,4 @@ -#include<bits/stdc++.h> +#include <bits/stdc++.h> using namespace std; @@ -23,18 +23,16 @@ const int dx[4]{1, 0, -1, 0}; const int dy[4]{0, 1, 0, -1}; void solve() { - - } -int main () { - ios_base::sync_with_stdio(false); - cin.tie(NULL); - int tt; - cin >> tt; - while(tt--) { +int main() { + ios_base::sync_with_stdio(false); + cin.tie(NULL); + int tt; + cin >> tt; + while (tt--) { solve(); - } + } } /* stuff you should look for: |
