aboutsummaryrefslogtreecommitdiff
path: root/GoodString.cpp
blob: a0335fa62a4b0c3189064dc8a11fe92aad485e6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;

    }
  }

}