very well explained. I was stuck in so many if else conditions based on wildcard , opening, closing. But your explanation made it easy to understand. Thank you sir!!
@techdose4u19 күн бұрын
nice :)
@VishyAnand-s5e21 күн бұрын
Excellent explanation sir. Really understood it well!! Thanks a lot!
@techdose4u21 күн бұрын
Nice :)
@vedantzawar521821 күн бұрын
Very easy solution ! Well explained sir !
@techdose4u21 күн бұрын
Thanks :)☺️
@SumeetYadav-u7s21 күн бұрын
excellent solution
@techdose4u21 күн бұрын
Thanks :)
@programming617720 күн бұрын
thank you so much bro awasome teaching🤗🤗
@techdose4u20 күн бұрын
welcome :)
@Abhishek-e6d2c20 күн бұрын
loved it!!
@techdose4u20 күн бұрын
great :)
@mani263220 күн бұрын
well explained sir, thank you
@techdose4u20 күн бұрын
You are welcome
@drain163521 күн бұрын
Thank you
@duongducanh20620 күн бұрын
What is the software that you use to draw here? Appreciate it uf you can share
@АлександрЮшкевич-ц7ь20 күн бұрын
Thank you very much for the solution. It's easy but the problem has so low acceptance rate.
@techdose4u20 күн бұрын
coz of wild cards :)
@mdnoverflow12 күн бұрын
best
@techdose4u12 күн бұрын
thanks :)
@Anbu-x2k20 күн бұрын
i don't know why single pass is not enough can anyone explain plz...
@techdose4u20 күн бұрын
coz in single pass you can only know about wild cards on left NOT about right. Finding imbalance is not enough for this problem. Wild cards can be used to balance it :)
@Anbu-x2k20 күн бұрын
@@techdose4u thank you for your response
@godFather-123-b8g21 күн бұрын
did you take offline classes somewhere?
@techdose4u19 күн бұрын
Yes from class 6th I am teaching JEE prep in College Coding Since masters :)
@AbhinavGavade21 күн бұрын
this question was marked as Medium by leetcode but it was Hard !
@techdose4u19 күн бұрын
Yea it has prerequisite questions. As mentioned at beginning, if you solved them then its medium else Hard for someone new to
@HeroicVampire21 күн бұрын
i dont understand first your voice is not clear then you are not telling clearly about what steps you are doing.. you just like blindly reading
@techdose4u21 күн бұрын
Do you mean the question ? Your feedback is appreciated.
@AMANKUMAR-rz3fu21 күн бұрын
Great soln. Pls be a little slower sir. Tnx
@techdose4u19 күн бұрын
I was actually expecting the Valid Parenthesis to be known before solving this, otherwise this question will be hard to solve :)
@BholaSingh-m8z21 күн бұрын
I couldn't understand much; everything went over my head. Your teaching pace is very fast. It would be great if you could simplify the explanation and make it more beginner-friendly.
@neerajgarg909621 күн бұрын
simple consider we go with 2 pass solution: class Solution { public boolean canBeValid(String s, String locked) { int n = s.length(); //odd length return false if(n%2!=0){ return false; } int openingbBracket=0,closingBracket=0,wildCount=0; for(int i=0; i
@techdose4u21 күн бұрын
You can watch Valid Parenthesis problem :) This is a harder problem from the rest which I had mentioned.