165. remove characters

medium  - accepted / - tried

Given a string contaning only a, b and c, remove all b and ac.

removeChars('ab') // 'a'
removeChars('abc') // ''
removeChars('cabbaabcca') // 'caa'

What is the time and space complexity of your approach?

Bugfree ordinary solution is better than buggy fancy ones.

(229)