The problem calls for us to maintain two parallel symbols in a string, so we'll need some way to keep track of the "balancing".
This means we'll need a certain technique which allows for keeping score of both of the following things:
- We should track what's "coming in" or incoming.
- We should also keep count of what's "going out" or outgoing.
Let's start to brainstorm ways of keeping that information handy and accessible.
