Skip to content

Commit d898609

Browse files
authored
Update remove_duplicates.cpp
1 parent 579b6e3 commit d898609

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Recursion/remove_duplicates.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/*Given a string S, remove consecutive duplicates from it recursively*/
12
#include <iostream>
23
#include <string.h>
34
using namespace std;
@@ -24,4 +25,4 @@ int main() {
2425
/*Example
2526
aaaabbbbb
2627
O/p ab
27-
*/
28+
*/

0 commit comments

Comments
 (0)