-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremove_consecutive_charactersl.cpp
54 lines (54 loc) · 1.14 KB
/
remove_consecutive_charactersl.cpp
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
// Problem Link - https://www.interviewbit.com/problems/remove-consecutive-characters/
/* Problem Solution Function --------------------------------+
string Solution::solve(string A, int B) { <-------------+
int counter = 1;
char ident = A[0];
for (int i = 1; i < A.size(); i++)
{/
+ if(ident == A[i])
{
counter++;
if(counter == B)
{
A.erase(i-B+1, B);
counter = 0;
i = i-B;
continue;
}
}
else{
counter = 1;
ident = A[i];
}
}
return A;
}
*/
#include <bits/stdc++.h>
using namespace std;
string slover(string A, int B);
{
int counter = 1;
char ident = A[0];
for (int i = 1; i < A.size(); i++)
{
if(ident == A[i])
{
counter++;
if(counter == B)
{
A.erase(i-B+1, B);
counter = 0;
i = i-B;
continue;
}
}
else{
counter = 1;
ident = A[i];
}
}
return A;
}
int main()
{}