8 lines
159 B
C++

#include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
int evalRPN(vector<string> &tokens);
bool test(vector<string> &tokens, int answer);
};