From 79d618f6b9a45d82023792140e70d271485cf005 Mon Sep 17 00:00:00 2001 From: Omar Magdy Date: Mon, 9 May 2022 16:54:41 +0200 Subject: Added some new problems --- GoodString.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 GoodString.cpp (limited to 'GoodString.cpp') 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 + +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; + + } + } + +} -- cgit v1.2.3