diff options
| author | Omar Magdy <omar.professional8777@gmail.com> | 2022-05-09 16:54:41 +0200 |
|---|---|---|
| committer | Omar Magdy <omar.professional8777@gmail.com> | 2022-05-09 16:54:41 +0200 |
| commit | 79d618f6b9a45d82023792140e70d271485cf005 (patch) | |
| tree | 55dd529dbea2327d0a23e80b78f8912e73633e6d /GoodString.cpp | |
| parent | c7cecfca5337473def7f1c9adba208ab33a11c8e (diff) | |
| download | competitive-programming-79d618f6b9a45d82023792140e70d271485cf005.tar.xz competitive-programming-79d618f6b9a45d82023792140e70d271485cf005.zip | |
Added some new problems
Diffstat (limited to 'GoodString.cpp')
| -rw-r--r-- | GoodString.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/GoodString.cpp b/GoodString.cpp new file mode 100644 index 0000000..a0335fa --- /dev/null +++ b/GoodString.cpp @@ -0,0 +1,18 @@ +#include<bits/stdc++.h> + +using namespace std; + +int main() { + int tt; cin >> tt; + int n; + while(tt--) { + cin >> n; + string s; + cin >> s; + for(int i = n - 1; i > 0; i--) { + int j = n - 2; + + } + } + +} |
