Implement `evalRPN(tokens)` that evaluates an expression in **Reverse Polish Notation**. Tokens are strings: either numbers or one of `+`, `-`, `*`, `/`. Division truncates toward zero. Example: `evalRPN(["2","1","+","3","*"])` → `9`.
+ 1 hidden test run on Submit.
A stack holds operands; each operator pops two and pushes the result. O(n) time and space.
Run your code to see results.