[OJ.leetcode] Evaluate Reverse Polish Notation
https://oj.leetcode.com/problems/evaluate-reverse-polish-notation/ Evaluate the value of an arithmetic expression in Reverse Polish Notation.Valid operators are +, -, *, /. Each operand may be an integer or another expression.Some examples: ["2", "1", "+", "3", "*"] -> ((2 + 1) * 3) -> 9 ["4", "13", "5", "/", "+"] -> (4 + (13 / 5)) -> 6 /*사칙연산의 우선순위가 존재하는데, 주어진 예제에서 입력이 언제나 사칙연산의 우선순위에 맞게 들어오므로연..
더보기