aboutsummaryrefslogtreecommitdiff
path: root/GoodString.cpp
diff options
context:
space:
mode:
authorOmar Magdy <omar.professional8777@gmail.com>2022-05-09 17:01:59 +0200
committerOmar Magdy <omar.professional8777@gmail.com>2022-05-09 17:01:59 +0200
commit3c1d12ac165f1ff1cb154f8200aaeb37f74586d9 (patch)
treefb63ed53d14f81924abd0a75705ed9a275bd5266 /GoodString.cpp
parentfbc0c6cc01c0f7bd90e1a6ef0d07fd852f367a9b (diff)
downloadcompetitive-programming-3c1d12ac165f1ff1cb154f8200aaeb37f74586d9.tar.xz
competitive-programming-3c1d12ac165f1ff1cb154f8200aaeb37f74586d9.zip
Removed GoodString.cpp
Diffstat (limited to 'GoodString.cpp')
-rw-r--r--GoodString.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/GoodString.cpp b/GoodString.cpp
deleted file mode 100644
index a0335fa..0000000
--- a/GoodString.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#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;
-
- }
- }
-
-}