Can we solve this by using frequency array where we store the frequency of each character and then compare it ?
@DeepakKumarSingh-kd8kg9 сағат бұрын
Like this : public boolean canConstruct(String ransomNote, String magazine) { int freq1[] = new int[26]; int freq2[] = new int[26]; for (int i = 0; i < ransomNote.length(); i++) { freq1[ransomNote.charAt(i) - 'a']++; } for (int i = 0; i < magazine.length(); i++) { freq2[magazine.charAt(i) - 'a']++; } for (int i = 0; i < freq1.length; i++) { if (freq1[i] > freq2[i]) { return false; } } return true; }
@rohitkumar981533 күн бұрын
Keep Hustling Bro ❤
@predecode3 күн бұрын
Thanks
@pqrstwxyz11754 күн бұрын
Well Explained🙌
@predecode2 күн бұрын
Thanks
@ajinkyawalunj75544 күн бұрын
👏👏👏
@predecode2 күн бұрын
Thanks
@rohitkumar981539 күн бұрын
Voiceover 👌👌
@predecode7 күн бұрын
Thanks
@rohitkumar981539 күн бұрын
❤❤
@predecode7 күн бұрын
😊
@rohitkumar981539 күн бұрын
👌👌
@predecode9 күн бұрын
😊
@rohitkumar981539 күн бұрын
Valuable ❤
@predecode9 күн бұрын
🥳
@rohitkumar981539 күн бұрын
Feedback : Try to Not Upload These Kind Of Songs
@predecode9 күн бұрын
Noted
@rohitkumar981539 күн бұрын
Explanation Level 👌👌
@predecode7 күн бұрын
Thanks
@rohitkumar981539 күн бұрын
Content ❤
@predecode7 күн бұрын
Thanks
@rohitkumar9815313 күн бұрын
Content ❤❤
@predecode12 күн бұрын
Thanks 😊
@rohitkumar9815313 күн бұрын
Keep Hustling Bro 💯✅
@predecode12 күн бұрын
Thanks 😊
@DeepakKumarSingh-kd8kg13 күн бұрын
apko kaise bhul skte hai
@predecode13 күн бұрын
😂
@rajanpal520414 күн бұрын
Good
@predecode14 күн бұрын
Thanks
@hacker_boy_26315 күн бұрын
Bro Lets do it together.
@predecode14 күн бұрын
Thanks
@pqrstwxyz117515 күн бұрын
Arrays explained well
@predecode15 күн бұрын
Thanks
@ajinkyawalunj755415 күн бұрын
Very nice explanation
@predecode15 күн бұрын
Glad you liked it.
@rohitkumar9815315 күн бұрын
✅✅
@predecode15 күн бұрын
Thanks
@rohitkumar9815315 күн бұрын
❤❤
@predecode15 күн бұрын
😊
@rohitkumar9815315 күн бұрын
❤❤
@predecode15 күн бұрын
😊
@rohitkumar9815315 күн бұрын
Bro Try to Make a shorter Shorter Video ❤
@predecode15 күн бұрын
Noted.
@pqrstwxyz117518 күн бұрын
👏👏👏
@predecode18 күн бұрын
😊
@pqrstwxyz117518 күн бұрын
Great explanation
@predecode18 күн бұрын
Glad you liked it.
@rohitkumar9815320 күн бұрын
Well Explanation ✅
@predecode20 күн бұрын
Glad you liked it!
@sumitkumarsingh934220 күн бұрын
Well explained 👌
@predecode20 күн бұрын
Thank you 🙂
@VidVentureZone20 күн бұрын
Keep it up.
@predecode20 күн бұрын
Thanks for the support!
@rohitkumar9815320 күн бұрын
❤❤❤
@predecode20 күн бұрын
Thanks ☺️
@rohitkumar9815320 күн бұрын
❤❤❤
@predecode20 күн бұрын
Thanks ☺️
@ajinkyawalunj755421 күн бұрын
Keep it up
@predecode21 күн бұрын
Thanks
@pqrstwxyz117521 күн бұрын
Very well explained
@predecode21 күн бұрын
Glad you liked it
@rohitkumar9815322 күн бұрын
First Viewer ✅
@predecode22 күн бұрын
Thanks for watching 👍
@rohitkumar9815323 күн бұрын
Voiceover 👌✅
@predecode23 күн бұрын
👍
@rohitkumar9815324 күн бұрын
Voiceover 👌👌
@predecode23 күн бұрын
👍
@rohitkumar9815324 күн бұрын
❤❤❤
@predecode23 күн бұрын
👍
@ajinkyawalunj755427 күн бұрын
Keep it up
@predecode26 күн бұрын
Thanks
@pqrstwxyz117527 күн бұрын
🙌🙌
@predecode26 күн бұрын
🤝
@rohitkumar9815329 күн бұрын
👌❤️
@predecode28 күн бұрын
Keep watching 👀
@rohitkumar98153Ай бұрын
Keep Doing It ✅
@predecodeАй бұрын
Thanks for your support
@rohitkumar98153Ай бұрын
Well Explained ❤
@predecodeАй бұрын
Thanks
@pqrstwxyz1175Ай бұрын
🌟🌟🌟🌟
@predecodeАй бұрын
✌️
@DeepakKumarSingh-kd8kgАй бұрын
I solve this problem using Stack and Stringbuilder class Solution { public String removeStars(String s) { Stack<Character> st = new Stack<>(); StringBuilder sb = new StringBuilder(); for(int i=0;i<s.length();i++) { if(s.charAt(i)!='*') { st.push(s.charAt(i)); } else if(!st.isEmpty() && s.charAt(i)=='*'){ st.pop(); } } while(!st.isEmpty()) { sb.append(st.pop()); } return sb.reverse().toString(); } } in this way
@predecodeАй бұрын
Same approach 😊
@rohitkumar98153Ай бұрын
Keep Going Brother ❤❤❤
@predecodeАй бұрын
Thank you, I will
@DeepakKumarSingh-kd8kgАй бұрын
nye explanation bhaiya
@predecodeАй бұрын
Thanks
@pqrstwxyz1175Ай бұрын
👌👌👌
@predecodeАй бұрын
Thanks
@DeepakKumarSingh-kd8kgАй бұрын
class Solution { public boolean isSubsequence(String s, String t) { int ans=0; int x=0; //base case if(s.length()==0) { return true; } for(int i=0;i<t.length();i++) { if(s.charAt(x)==t.charAt(i)) { ans++; if(x!=s.length()-1){ x++; } else{ break; } } } if(ans>=s.length()) { return true; } return false; } } I solve in this way .