Hello, please help me understand how to solve
Write a calculator to perform basic arithmetic, but using an alternative syntax for writing the expressions. In this alternative notation, the operators precede the operands. For example while in traditional notation we might write 3+ 4, Instead we would write + 3 4. The main advantage of this format is that it does not require parentheses for any ambiguous expression. Traditional notation 3+4 3-(4*5) (3+4)*5 (3-4)/(5+2) Alternative notation + 3 4 - 3 * 4 5 * + 3 4 5 / - 3 4 + 5 2 In the code provided, exports a calculate function. This function is expected to take an alternative expression as a string, and output the numerical solution. Please Implement the calculate function to solve expressions in the alternative format as expected.