diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2024-05-27 16:30:12 +0300 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2024-05-27 16:30:12 +0300 |
| commit | 5565beca67266d65b28d0c0ad5d1a06178ede73f (patch) | |
| tree | 9e932a7e8b778bb8b38d60c196881dcd7e2e0d3c /codeforces/TechnicalSupport/main.cpp | |
| parent | 8e8da93654eedfc65e366fa5c97e08b37673fbbc (diff) | |
| download | competitive-programming-5565beca67266d65b28d0c0ad5d1a06178ede73f.tar.xz competitive-programming-5565beca67266d65b28d0c0ad5d1a06178ede73f.zip | |
Solved two dp problems on cses
Diffstat (limited to 'codeforces/TechnicalSupport/main.cpp')
| -rwxr-xr-x | codeforces/TechnicalSupport/main.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/codeforces/TechnicalSupport/main.cpp b/codeforces/TechnicalSupport/main.cpp index 57e8dd3..c9ee12d 100755 --- a/codeforces/TechnicalSupport/main.cpp +++ b/codeforces/TechnicalSupport/main.cpp @@ -1,4 +1,4 @@ -#include<bits/stdc++.h> +#include <bits/stdc++.h> using namespace std; @@ -38,14 +38,14 @@ void solve() { cout << (cnt == 0 ? "Yes" : "No") << '\n'; } -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: |
