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!!
@techdose4u12 күн бұрын
nice :)
@vedantzawar521814 күн бұрын
Very easy solution ! Well explained sir !
@techdose4u14 күн бұрын
Thanks :)☺️
@VishyAnand-s5e14 күн бұрын
Excellent explanation sir. Really understood it well!! Thanks a lot!
@techdose4u14 күн бұрын
Nice :)
@SumeetYadav-u7s14 күн бұрын
excellent solution
@techdose4u14 күн бұрын
Thanks :)
@drain163514 күн бұрын
Thank you
@duongducanh20613 күн бұрын
What is the software that you use to draw here? Appreciate it uf you can share
@programming617713 күн бұрын
thank you so much bro awasome teaching🤗🤗
@techdose4u13 күн бұрын
welcome :)
@Abhishek-e6d2c13 күн бұрын
loved it!!
@techdose4u13 күн бұрын
great :)
@mani263213 күн бұрын
well explained sir, thank you
@techdose4u13 күн бұрын
You are welcome
@АлександрЮшкевич-ц7ь13 күн бұрын
Thank you very much for the solution. It's easy but the problem has so low acceptance rate.
@techdose4u13 күн бұрын
coz of wild cards :)
@godFather-123-b8g14 күн бұрын
did you take offline classes somewhere?
@techdose4u12 күн бұрын
Yes from class 6th I am teaching JEE prep in College Coding Since masters :)
@Anbu-x2k13 күн бұрын
i don't know why single pass is not enough can anyone explain plz...
@techdose4u13 күн бұрын
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-x2k13 күн бұрын
@@techdose4u thank you for your response
@mdnoverflow5 күн бұрын
best
@techdose4u5 күн бұрын
thanks :)
@AbhinavGavade14 күн бұрын
this question was marked as Medium by leetcode but it was Hard !
@techdose4u12 күн бұрын
Yea it has prerequisite questions. As mentioned at beginning, if you solved them then its medium else Hard for someone new to
@HeroicVampire14 күн бұрын
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
@techdose4u14 күн бұрын
Do you mean the question ? Your feedback is appreciated.
@AMANKUMAR-rz3fu14 күн бұрын
Great soln. Pls be a little slower sir. Tnx
@techdose4u12 күн бұрын
I was actually expecting the Valid Parenthesis to be known before solving this, otherwise this question will be hard to solve :)
@BholaSingh-m8z14 күн бұрын
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.
@neerajgarg909614 күн бұрын
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
@techdose4u14 күн бұрын
You can watch Valid Parenthesis problem :) This is a harder problem from the rest which I had mentioned.