Power Set | Print all Subsequences

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 พ.ย. 2024

ความคิดเห็น • 119

  • @abhay9994
    @abhay9994 ปีที่แล้ว +12

    I wanted to send you a heartfelt thank you for your tireless dedication to teaching DSA for free. Your selflessness and passion for helping students with their job interview preparation have made a significant impact on my life and countless others. I am incredibly grateful for the knowledge and confidence you have imparted to us. Thank you for everything you do!❣✨✨

  • @mohdfarhanahmed9416
    @mohdfarhanahmed9416 3 ปีที่แล้ว +11

    Striver, can you tell us from where you will get the intuition of the problems?
    Fully understood! Keep up the outstanding work.☺️

    • @takeUforward
      @takeUforward  3 ปีที่แล้ว +12

      These are more observation based problems, questions like rainwater trapping and next permutations have intuition..

  • @bhargavnagacharan1899
    @bhargavnagacharan1899 3 ปีที่แล้ว +34

    If I would have seen this video teo ayd earlier I would have been placed now 😭😭😭. Anyway thanks bro ❤️

  • @stith_pragya
    @stith_pragya 6 หลายเดือนก่อน +1

    Understood......Thank You So Much for this wonderful video.....🙏🏻🙏🏻🙏🏻

  • @tanayshah275
    @tanayshah275 3 ปีที่แล้ว +12

    Heads up: if anyone is visiting the problem link for practicing at GFG make sure you sort the resultant array and also remove the empty string before submitting the code.
    Great Video Raj, Really enjoying the frequency at which the Videos are coming from last week. Thanks for all your time and efforts.

    • @ankitasinha9912
      @ankitasinha9912 2 ปีที่แล้ว

      AllPossibleStrings(s){
      //code here
      s=s.trim()
      let n =s.length;
      let ar=[]
      for(let num=0;num

    • @yegavintisumanth5593
      @yegavintisumanth5593 ปีที่แล้ว

      tq

  • @shrijonbiswas8105
    @shrijonbiswas8105 ปีที่แล้ว +1

    I hope you are doing EXTREMELY WELL!!!

  • @AnkitRaj-ux7lv
    @AnkitRaj-ux7lv 2 หลายเดือนก่อน

    // this is best intuition expected by any company
    class Solution {
    public:
    vector subsets(vector& nums) {
    int n=nums.size();
    vector ans;
    for(int i=0;i

  • @sayak
    @sayak 2 ปีที่แล้ว +1

    in striver SDE sheet, this question is under Trie category. Why? I couldn't do it using Trie. getting stuck in cases like "aa". Didn't find any solution that uses trie for this question

  • @gurjotsingh7817
    @gurjotsingh7817 3 ปีที่แล้ว +16

    Sir thank you so much for sharing these amazing explanations with us. 🔥❤

  • @shubhammishra1225
    @shubhammishra1225 2 ปีที่แล้ว +1

    How can we think about these types of non typical approaches ...

  • @shubham57641
    @shubham57641 ปีที่แล้ว +1

    Outstanding approach hats off to you man

  • @tanayshah275
    @tanayshah275 3 ปีที่แล้ว +5

    Recursive way for writing the code :
    def findall(s, i, cur, res):
    res.append(cur)

    for idx in range(i, len(s)):
    findall(s, idx + 1, cur + s[idx], res)
    s = 'abc'
    findall(s, 0, "", res)
    Posting so others can also think of one more approach to solve this problem

    • @takeUforward
      @takeUforward  3 ปีที่แล้ว +3

      Yes, explained this in recursion playlist..

  • @amanali9501
    @amanali9501 2 ปีที่แล้ว

    If we do 110 & 000 it will give 0 means 0 index is not included in it , which is not true

  • @tirumanadhamaishwarya1320
    @tirumanadhamaishwarya1320 3 ปีที่แล้ว +8

    Thanks sir you are literally provided most valuable content and these are really helpful!!:)

  • @anonymosy
    @anonymosy 8 หลายเดือนก่อน

    One of the interesting approach I have come to know, thanks striver.

  • @BharathIndia-q1k
    @BharathIndia-q1k ปีที่แล้ว +1

    In Striver's SDE sheet, this question was given under Trie Concept. Can anyone inform me how is it related to Trie ?

  • @mohammedwaseem8599
    @mohammedwaseem8599 3 ปีที่แล้ว +1

    I think
    if(sub.size()>=0)?? What's your take of bhaiya??

  • @jugantarchakraborty9216
    @jugantarchakraborty9216 3 ปีที่แล้ว +3

    Bhaiya is an inspiration for T3 college students

  • @neetisaharan1340
    @neetisaharan1340 3 ปีที่แล้ว +2

    thank you so much for sharing these amazing explanations with us.

  • @0x978
    @0x978 2 ปีที่แล้ว

    Genius non-recursive solution to a problem commonly solved with recursion

  • @sushmitamandal1677
    @sushmitamandal1677 ปีที่แล้ว

    Thank you sir i finally understand from your explanation searching for 2 hr😊.

  • @subarnarekhaghosal4447
    @subarnarekhaghosal4447 2 หลายเดือนก่อน

    Thanks for the videos. one doubt, 6th index should be cb right why bc?

  • @khushivernekar3863
    @khushivernekar3863 4 หลายเดือนก่อน

    Thank you sir😊, you made this topic crystal clear.

  • @arunpandey1487
    @arunpandey1487 3 ปีที่แล้ว +1

    Bhaiya in MSB in O(1) can't we just return (1

  • @Usurperhk
    @Usurperhk 3 ปีที่แล้ว +2

    Me watching random youtube video at 2x speed, but when TUF video starts.....
    "Jaldi speed kam kar jaldi kar, mrko toh aise dhak dhak horella hai re..."

  • @012akashh
    @012akashh 3 ปีที่แล้ว +2

    I would recommend you to also cover system design topic

  • @varun25aggarwal
    @varun25aggarwal 2 ปีที่แล้ว

    its the practical application of 11th math permutation and combinations.

  • @ADNANAHMED-eo5xx
    @ADNANAHMED-eo5xx 3 ปีที่แล้ว +1

    Thanks Striver 79 for uploading videos so frequently.

  • @kunalbandooni4009
    @kunalbandooni4009 2 ปีที่แล้ว

    Can the same problem be implemented using Trie? I feel it would take lesser time, however space would be more.

  • @aryashjain7893
    @aryashjain7893 2 ปีที่แล้ว

    should we go for recursion on powerset approach , acc to TC

  • @vasujain1970
    @vasujain1970 3 ปีที่แล้ว +1

    Thank you for the amazing and helpful videos!

  • @meghamalviya8495
    @meghamalviya8495 2 ปีที่แล้ว

    Understood.
    Thankyou for these videos!

  • @PremKumar-rd1uv
    @PremKumar-rd1uv 3 ปีที่แล้ว +1

    Thanks for this video Anna. Understood the concept

  • @mohitratanpal27
    @mohitratanpal27 ปีที่แล้ว +1

    i m doing left shift of 3 by 1 ,i m getting 6 and not 8 as he said,what wrong i m doing?

  • @amankothari3288
    @amankothari3288 2 ปีที่แล้ว

    sir i get it how this recursion works but i am unable to write my own code .i dont able to think that way . please tell me what should i do .

  • @valiz2628
    @valiz2628 ปีที่แล้ว

    sir will the article/videos on other topics of recursion are yet to be published??

  • @manaskhare412
    @manaskhare412 2 ปีที่แล้ว

    Till now, best explanation !!

  • @piyusharora5589
    @piyusharora5589 ปีที่แล้ว

    yet another more optimised solution
    // T.C O(N*N)
    vector subsets(vector& nums) {
    int n = nums.size();
    int sets = 1

  • @sidhant_khamankar
    @sidhant_khamankar 3 ปีที่แล้ว +2

    Divide integers without using / wala bata do bhaiya
    GFG ke solution se accept nahi horaha leetcode pe

    • @arunpandey1487
      @arunpandey1487 3 ปีที่แล้ว +2

      public int divide(int dividend, int divisor)
      {
      if(dividend==1=0)?true:false;
      dividend = Math.abs(dividend);
      divisor = Math.abs(divisor);
      int res = 0;
      while(dividend-divisor>=0)
      {
      int count = 0;
      while(dividend-(divisor

  • @zohaibahmad2752
    @zohaibahmad2752 หลายเดือนก่อน

    it's the same video that you also added in bit manipulation

  • @nileshkhimani9315
    @nileshkhimani9315 3 ปีที่แล้ว +2

    If possible, Please upload this SDE SHEET videos asap, on a daily basis. If possible!! It's a humble request.
    Thanks a Lot though.

    • @takeUforward
      @takeUforward  3 ปีที่แล้ว +13

      Aap is planet pe wapas aaye, aur channel ki ghanti bajakar rakhe tab aapko roz 6 baje samajh aaega ki video aa raha h!!

    • @nileshkhimani9315
      @nileshkhimani9315 3 ปีที่แล้ว

      @@takeUforward 🤣🤣

    • @nileshkhimani9315
      @nileshkhimani9315 3 ปีที่แล้ว

      @@takeUforward I meant like sde sheet k order me aaye 🤣

    • @nileshkhimani9315
      @nileshkhimani9315 3 ปีที่แล้ว

      @@takeUforward me aapke 40000 subscriber the tab se follow kar rha hu 🤣

    • @takeUforward
      @takeUforward  3 ปีที่แล้ว +10

      @@nileshkhimani9315 Likh leta hun UPSC me aaega XD, anyways on a lighter note, I am trying my very best, literally I am working 13/14 hours a day, 9 office + 4 hours yt (research, java code, cpp code, record, edit, upload, render...

  • @charchitmangal
    @charchitmangal ปีที่แล้ว

    Loved this question 😇

  • @ng3w462
    @ng3w462 3 ปีที่แล้ว +1

    Thank you Bhaiya for consistently uploading these videos this also motivates us to complete the series!

  • @AngadSingh97
    @AngadSingh97 4 หลายเดือนก่อน

    Thank you Striver, understood

  • @neerajkashyap01
    @neerajkashyap01 3 ปีที่แล้ว

    Got to know about Power set

  • @motabhaimotivation
    @motabhaimotivation 11 หลายเดือนก่อน

    but how is it related to trie then?

  • @bhaveshkumar6842
    @bhaveshkumar6842 3 ปีที่แล้ว

    Thank you, Striver!!!!

  • @vishalvishwakarma7621
    @vishalvishwakarma7621 6 หลายเดือนก่อน

    Nice explanation 🙂🙂🙏

  • @gamingbar3881
    @gamingbar3881 2 ปีที่แล้ว

    That's subsequence not substring... Btw amazing explanation❤

  • @selene8721
    @selene8721 3 หลายเดือนก่อน

    Thank you !!

  • @zphsmuddinayanapalli6912
    @zphsmuddinayanapalli6912 2 ปีที่แล้ว

    bhaiya how to say space complexity for this question?

  • @dillibabu1472
    @dillibabu1472 ปีที่แล้ว

    What is intuition

  • @kunalmodiart
    @kunalmodiart 2 ปีที่แล้ว

    thanks man.. amazing explaination👌👌

  • @MikrokosmosMuse
    @MikrokosmosMuse 3 ปีที่แล้ว

    thanks bro you are doing really well. I will definitely go through the whole series

  • @manisharya2138
    @manisharya2138 3 ปีที่แล้ว

    Thank u so much for my clear 👍👍

  • @shresthjain7557
    @shresthjain7557 ปีที่แล้ว

    best explanation

  • @venkythesmart440
    @venkythesmart440 3 ปีที่แล้ว +1

    superb explanation...

  • @taison0072
    @taison0072 2 ปีที่แล้ว

    Sir please share link of more bitoperator questions.

  • @lucy2003-d8p
    @lucy2003-d8p 5 หลายเดือนก่อน

    I solved this iam happy

  • @mdkashifraza2603
    @mdkashifraza2603 2 ปีที่แล้ว

    Thank you

  • @anil7931
    @anil7931 3 ปีที่แล้ว

    Thank you so much

  • @aps8874
    @aps8874 9 หลายเดือนก่อน

    Thank you :)

  • @sheetalgupta5686
    @sheetalgupta5686 7 หลายเดือนก่อน

    UNDERSTOOD

  • @torque6208
    @torque6208 6 หลายเดือนก่อน

    name of the song used int he outro

  • @anjneymishra1494
    @anjneymishra1494 2 ปีที่แล้ว

    sir which software you use for teaching

  • @rabbanimunna6992
    @rabbanimunna6992 ปีที่แล้ว

    Understood!

  • @shreyasingh1258
    @shreyasingh1258 3 ปีที่แล้ว +1

    bhaiya recursion se complexity to isse achi hui na fir i.e.2 power n. Then what is the need of this?

    • @takeUforward
      @takeUforward  3 ปีที่แล้ว +2

      recursion me printing le lega na N, th 2^n * n hi lg gai and space v lg rhi h auxiliary

    • @shreyasingh1258
      @shreyasingh1258 3 ปีที่แล้ว

      @@takeUforward got your point thanks for clarifying so quickly bhaiya!

  • @harshitjaiswal9439
    @harshitjaiswal9439 9 หลายเดือนก่อน

    understood.

  • @almoontasirmoon933
    @almoontasirmoon933 2 ปีที่แล้ว

    best explanation bro

  • @krishnavamsichinnapareddy
    @krishnavamsichinnapareddy ปีที่แล้ว

    Understood ❤

  • @v.sreesairam9488
    @v.sreesairam9488 3 ปีที่แล้ว

    bhaiya daily video wow! :)

  • @parikshitrathore1510
    @parikshitrathore1510 3 ปีที่แล้ว

    Understood🔥

  • @ArpitKumar-yo6up
    @ArpitKumar-yo6up 2 ปีที่แล้ว

    Love for striver bhaiya

  • @Code_Solver
    @Code_Solver 3 ปีที่แล้ว

    Understood

  • @hemantpatel1413
    @hemantpatel1413 2 ปีที่แล้ว

    understood

  • @adarshrai9516
    @adarshrai9516 3 ปีที่แล้ว

    Thanks bhai 🙏

  • @wintermist7921
    @wintermist7921 3 ปีที่แล้ว

    Thanks bhaiya👍

  • @nileshsinha7869
    @nileshsinha7869 3 ปีที่แล้ว

    understood❤❤

  • @abhimanyu6534
    @abhimanyu6534 3 ปีที่แล้ว

    Plz help in CP QUES

  • @gauravmeena511
    @gauravmeena511 9 หลายเดือนก่อน

    done ✅✅

  • @ronakslibrary8635
    @ronakslibrary8635 ปีที่แล้ว

    US

  • @avinashkumarrao9728
    @avinashkumarrao9728 2 ปีที่แล้ว

    god

  • @postgres-c4b
    @postgres-c4b 2 ปีที่แล้ว

    💌💌💌💌💌

  • @takeUforward
    @takeUforward  3 ปีที่แล้ว +8

    Do write "understood" if you understood, motivates me :)
    Insta: instagram.com/striver_79/​
    Telegram: bit.ly/tuftelegram​

  • @Priyanshubihari101
    @Priyanshubihari101 ปีที่แล้ว

    Bc😂😂😂

  • @seraj_valley
    @seraj_valley 3 ปีที่แล้ว

    kano m drd krne lgta h kabhi kabhi

  • @keshav9408
    @keshav9408 3 ปีที่แล้ว

    I humbly request you to not support institution like code Ninja. Self learning is best learning 🙏

  • @GhostVaibhav
    @GhostVaibhav ปีที่แล้ว

    Understood 🔥

  • @dewanandkumar8589
    @dewanandkumar8589 5 หลายเดือนก่อน

    Understood

  • @dingo_5998
    @dingo_5998 2 ปีที่แล้ว +1

    Thank you bhaiya

  • @Learnprogramming-q7f
    @Learnprogramming-q7f 8 หลายเดือนก่อน

    Thank you Bhaiya

  • @abhinanda7049
    @abhinanda7049 11 หลายเดือนก่อน

    understood

  • @Shivi32590
    @Shivi32590 3 หลายเดือนก่อน

    understood