F5 interview question

Implement a postfix calculator

Interview Answer

Anonymous

Oct 17, 2017

I worked toward a stack-based solution onto which I push operands and compute intermediate results when an operation is encountered. Honestly, I ran out of time before I had a working solution.