mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 09:04:06 +00:00
10 lines
186 B
C++
10 lines
186 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
string s = "4+1-3*10/2*5";
|
|
int answer = -70;
|
|
Solution soln;
|
|
cout << "Evaluated expression correctly? " << soln.test(s, answer) << endl;
|
|
return 0;
|
|
} |