diff options
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: |
