mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 06:24:07 +00:00
10 lines
263 B
C++
10 lines
263 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
vector<string> tokens{"10", "6", "9", "3", "+", "-11", "*", "/", "*", "17", "+", "5", "+"};
|
|
int answer = 22;
|
|
Solution soln;
|
|
cout << "Evaluated postfix expression correctly? " << soln.test(tokens, answer) << endl;
|
|
return 0;
|
|
} |