Madam solution link c++ me bhi diya karo please !!!!! 🙏
@AyushiSharmaDSA2 жыл бұрын
sure :)
@wigglesort2 жыл бұрын
string decodeString(string s) { stack stk; string curNum = "0", curString = ""; for(auto c: s){ if(c == '['){ stk.push(curString); stk.push(curNum); curNum = "0"; curString = ""; } else if(c == ']'){ int num = stoi(stk.top()); stk.pop(); string str = stk.top(); stk.pop(); string res = ""; for (int i=0; i
@aayushkumar76702 жыл бұрын
C++ Solution class Solution { public: string decodeString(string s) { int n=0; string cstr=""; stack s1; stack s2; for(int i=0;i='0' && s[i]
@maddycoder1294 Жыл бұрын
nice explanation , thank you
@AyushiSharmaDSA Жыл бұрын
Glad it was helpful!🤗
@yashsharma61122 жыл бұрын
I have checked your channel for this video just a hour ago 🙂. Thanks for uploading
@AyushiSharmaDSA2 жыл бұрын
Welcome, glad it is helpful. Thank you Yash for supporting :)
@Darshan-p5r5k8 ай бұрын
thanks for doing this
@Viralmemerxyz Жыл бұрын
nice explaination
@AyushiSharmaDSA6 ай бұрын
thank you, glad it was helpful :)
@archismansaha76602 жыл бұрын
it's failing in c++ because it is unable to push empty string into stack at the very begining.
@TheDailyProphet7892 жыл бұрын
Hey if u are able to solve the pls provide code
@aayushkumar76702 жыл бұрын
C++ Code class Solution { public: string decodeString(string s) { int n=0; string cstr=""; stack s1; stack s2; for(int i=0;i='0' && s[i]
@gandhijainamgunvantkumar67832 жыл бұрын
Thank you for the amazing explanation :)
@AyushiSharmaDSA2 жыл бұрын
Welcome 🤗
@sangamsharma74332 жыл бұрын
hello didi i am second year non cs student can you suggest me a book for c++ for clearnig my fundamentals and basics of a c++ programming language so after that i can DS algo and i am totally new to programming field
@AyushiSharmaDSA2 жыл бұрын
Hi Sangam, I followed Learn Programming in C++ by Dr. Hardeep Singh, Vikram Sharma, Anurag Gupta, Anshuman Sharma. You can also refer GeeksForGeeks :)
@ritikashishodia6752 жыл бұрын
See saurbh shukla sir lecture from mysirg g channel if u have less time u take course also.
@krishnaradhey28142 жыл бұрын
Mam were you able to come up with this approach in your first attempt OR you had also learned this approach from somewhere ,,,asking because i have done many ques.. on stack but got stuck at this problem hope you would reply....
@krishnaradhey28142 жыл бұрын
Asking to confirm whether i am the only one or it's normal
@Rishabhsingh-ev7ii2 жыл бұрын
awsm and plz upload video in python plzz my request!!
@AyushiSharmaDSA2 жыл бұрын
Thanks Rishabh, sure :)
@anshulgupta71582 жыл бұрын
Hello mam, this video was really good and helpful.....but i request you to provide the code in cpp also...
@AyushiSharmaDSA2 жыл бұрын
Hi Anshul, thanks and sure I'll provide code in c++ :)
@master_persi2 жыл бұрын
class Solution { public: string decodeString(string s) { stackst; int currNo=0,prevNo=0; string currString="",prevString=""; for(int i=0;i
@TheDailyProphet7892 жыл бұрын
@@master_persi but ye lengthy lg rha hau
@SavitarOP2 жыл бұрын
OP Solution
@AyushiSharmaDSA2 жыл бұрын
Thank you :)
@animegamer91802 жыл бұрын
Hi do you know where I could find the answer to this question but in C, I've had no luck finding this so far
@AyushiSharmaDSA2 жыл бұрын
Hi, try finding it in leetcode discussion section
@wigglesort2 жыл бұрын
C++ code string decodeString(string s) { stack stk; string curNum = "0", curString = ""; for(auto c: s){ if(c == '['){ stk.push(curString); stk.push(curNum); curNum = "0"; curString = ""; } else if(c == ']'){ int num = stoi(stk.top()); stk.pop(); string str = stk.top(); stk.pop(); string res = ""; for (int i=0; i
@ecs185_shaileshbharti32 жыл бұрын
Great Explanation 💥
@AyushiSharmaDSA2 жыл бұрын
Thank you, glad it was helpful :)
@shulabhkumar77732 жыл бұрын
Great Video I have sent the request over linkedin but you didnt except it can you please provide your referral for SDE -3
@h_a_r_s_h012 жыл бұрын
Can you create some content over CP ? Or which resources should we follow for excelling in CP. Regards ❤️
@AyushiSharmaDSA2 жыл бұрын
Sure :)
@RonitSagar Жыл бұрын
Can you please mention which pentab you are using?
@AyushiSharmaDSA Жыл бұрын
Hey, I use external mouse only :)
@RonitSagar Жыл бұрын
@@AyushiSharmaDSA Thank u so much. Can you please give me little idea about your setup. it will be helpful for me as a started teaching DSA in an online coaching center and i am facing problem right now :)
@vizthakur2 жыл бұрын
I don't think this will work for nested brackets
@devankdubey66572 жыл бұрын
can you upload code in java
@raushansingh8618 Жыл бұрын
plz provide c++ code
@kritikamishra78652 жыл бұрын
can u suggest something for intuition like urs
@AyushiSharmaDSA2 жыл бұрын
Hi Kritika, with practice it will come automatically :)
@basimk50222 жыл бұрын
maam which application is using for the explanation ?
@AyushiSharmaDSA2 жыл бұрын
Microsoft whiteboard
@TheDailyProphet7892 жыл бұрын
Plss c++ code
@aayushkumar76702 жыл бұрын
class Solution { public: string decodeString(string s) { int n=0; string cstr=""; stack s1; stack s2; for(int i=0;i='0' && s[i]