diff --git a/Stack/EvalRPN.py b/Stack/EvalRPN.py new file mode 100644 index 0000000..0a2dae4 --- /dev/null +++ b/Stack/EvalRPN.py @@ -0,0 +1,5 @@ +from typing import List + +class Solution: + def evalRPN(self, tokens: List[str]) -> int: + \ No newline at end of file