-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlongestsubstringwithtwochar.cpp
More file actions
77 lines (69 loc) · 1.51 KB
/
longestsubstringwithtwochar.cpp
File metadata and controls
77 lines (69 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <bits/stdc++.h>
#include <vector>
#include <fstream>
using namespace std;
int lengthOfLongestSubstring(string s)
{
int st = 0, en = 0;
while (st < s.length())
{
/* code */
}
// Write your code here4.
}
class Runner
{
int t;
vector<string> S;
// vector<int> N;
// vector<vector<int>> Arr;
public:
void takeInput()
{
cin >> t;
S.resize(t);
// N.resize(t);
// Arr.resize(t);
for (int i = 0; i < t; i++)
{
cin >> S[i];
// cin >> N[i];
// Arr[i].resize(N[i]);
// for(int j=0; j<N[i]; j++){
// cin >> Arr[i][j];
// }
}
}
void execute()
{
vector<string> cpyS = S;
// vector<int> cpyN = N;
// vector<vector<int>> cpyArr = Arr;
for (int i = 0; i < t; i++)
{
int ans = lengthOfLongestSubstring(cpyS[i]);
}
vector<string>().swap(cpyS);
// vector<int>().swap(cpyN);
// vector<vector<int>>().swap(cpyArr);
}
void executeAndPrintOutput()
{
for (int i = 0; i < t; i++)
{
int ans = lengthOfLongestSubstring(S[i]);
cout << ans << endl;
}
}
};
int main()
{
#ifndef ONLINE_JUDGE
// freopen("testcases/Large/in/input11.txt", "r", stdin);
// freopen("testcases/Large/out/output11.txt", "w", stdout);
#endif
Runner runner;
runner.takeInput();
runner.executeAndPrintOutput();
return 0;
}