C++ Solution to Coding Challenge 1209. Remove All Adjacent Duplicates in String II
An example of using a std::vector as a std::stack
Problem statement
You are given a string s
and an integer k
, a k
duplicate removal consists of choosing k
adjacent and the same letters from s
and removing them, causing the left and the right side of the…