LC: 772. Basic Calculator III - spiralgo/algorithms GitHub Wiki

772. Basic Calculator III:

The Essence:

What we have to do here is parsing some given string into a numerical calculation. So the problem-solver should be informed about String manipulations in the programming language of choice.

Details:

We can implement the logic with recursion as explained in detail for the corresponding PR:

https://github.com/spiralgo/algorithms/pull/384