From 9bd5de21efd59c3c5c56d71b987f6cfd011a32b0 Mon Sep 17 00:00:00 2001 From: Dhruv Kothari Date: Sun, 4 Oct 2020 21:11:51 +0530 Subject: [PATCH] added --- Stack/ONP - Transform the Expression.cpp | 39 ++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Stack/ONP - Transform the Expression.cpp diff --git a/Stack/ONP - Transform the Expression.cpp b/Stack/ONP - Transform the Expression.cpp new file mode 100644 index 0000000..593eb49 --- /dev/null +++ b/Stack/ONP - Transform the Expression.cpp @@ -0,0 +1,39 @@ +#include +#define lli long long int +#define endl "\n" +using namespace std; + + +int main() +{ + + int t; + cin>>t; + while(t--) + { + string s; + cin>>s; + stack s1; + for(int i = 0; i