Length of Last Word | 2 Ways | Leetcode 58 | Amazon | codestorywithMIK

Поділитися
Вставка
  • Опубліковано 9 лис 2024

КОМЕНТАРІ • 47

  • @gauravmishra1341
    @gauravmishra1341 7 місяців тому +7

    Day 400 completed of yours,Mine 28 ,all bcz of you bhai

  • @aws_handles
    @aws_handles 7 місяців тому +1

    congratulations on 38k . you deserve millions.

  • @shabananoor9423
    @shabananoor9423 7 місяців тому +1

    Amazing ❤❤❤❤❤

  • @dyashwanth9822
    @dyashwanth9822 7 місяців тому +4

    Bhai biweekly contest ka 4th(3098. Find the Sum of Subsequence Powers) waale pe video banau na

    • @kapilnitb
      @kapilnitb 7 місяців тому

      ha bhai bnao ispe

    • @devmadaan5146
      @devmadaan5146 7 місяців тому

      @@kapilnitb kab se contest de rha tu

    • @kapilnitb
      @kapilnitb 7 місяців тому

      @@devmadaan5146 last week se start kiya h

  • @sonalkolhe4537
    @sonalkolhe4537 7 місяців тому

    Congratulations🤩

  • @TEJASSURYA-r2v
    @TEJASSURYA-r2v 12 днів тому +1

    much easier approach using stringstream...beats 100%
    class Solution {
    public:
    int lengthOfLastWord(string s) {
    stringstream ss(s);
    string word;
    string lastWord;
    while (ss >> word) {
    lastWord = word;
    }
    return lastWord.length();



    }
    };

  • @thekindspill
    @thekindspill 7 місяців тому

    Congratulations 🙌

  • @NonameNoname-f2t
    @NonameNoname-f2t 7 місяців тому

    sir please cover the question : Minimum Window Subsequence

  • @Artiflex31
    @Artiflex31 7 місяців тому

    Bhaiya ..can you please post the gfg POTD also . 🙏❤

  • @SameerKumar-nl5oy
    @SameerKumar-nl5oy 7 місяців тому

    please make video on (leetcode 310) minimum height trees

  • @mohammedamansha6052
    @mohammedamansha6052 7 місяців тому +1

    class Solution {
    public int lengthOfLastWord(String s) {
    s = s.stripTrailing();
    int emptyIndex = s.lastIndexOf(' ');
    return s.length() - emptyIndex - 1;
    }
    }

  • @Vishal-s2g7c
    @Vishal-s2g7c 21 день тому +2

    bro i learn new method

  • @gauravbanerjee2898
    @gauravbanerjee2898 7 місяців тому

    Thanks a lot bhaiya ❤❤ Congrats for 38k subs ❤❤

  • @insidious_681
    @insidious_681 7 місяців тому

    Stl solution helping sir 🙌

  • @ugcwithaddi
    @ugcwithaddi 7 місяців тому

    Congratulations on 38K Subs 🎉

  • @EB-ot8uu
    @EB-ot8uu 7 місяців тому

    congrats man. soon 50k

  • @jigglewalasuzzyop2045
    @jigglewalasuzzyop2045 7 місяців тому +1

    Using the STL stringstream , we can easily get the output for this question :
    class Solution {
    public:
    int lengthOfLastWord(string s) {
    stringstream ss(s);
    string token;
    string last;
    while( ss >> token){
    last = token;
    }
    return last.size();
    }
    };

  • @abhishekbhadauriya5781
    @abhishekbhadauriya5781 7 місяців тому

    Sir without using npos it gives right answer but sir when we subtract lastSpaceIdx from len then -1 then answer must be less than length of the string but it gives right answer as length of the string for the case when there is no space in the string.

    • @keshavlal6183
      @keshavlal6183 7 місяців тому

      string::npos (which is the maximum value representable by size_t, typically equivalent to -1)

  • @devmadaan5146
    @devmadaan5146 7 місяців тому +3

    kya haal chaal bhai !! mere bolne pe hi "you can watch in 1.5x daala h na"

  • @utkarshsahay9908
    @utkarshsahay9908 7 місяців тому

    3097. Shortest Subarray With OR at Least K II Please Provide the Solution of this too ❤❤

  • @dhairyachauhan6622
    @dhairyachauhan6622 7 місяців тому

    bhaiya agar time mile to weekly and biweekly contest ke q4 kara dena dono acche question hai, i was able to solve 4th in biweekly but go tle :(

  • @____abhay_sharma___
    @____abhay_sharma___ 7 місяців тому

    2035. Partition Array Into Two Arrays to Minimize Sum Difference:--->please make a tutorila on this ,i have watched more than 10 videos but not able to understand...i request you...

  • @yasharya5249
    @yasharya5249 7 місяців тому

    int lengthOfLastWord(string s) {
    istringstream iss(s);
    string word;
    vector words;
    while(iss>>word){
    words.push_back(word);
    }
    if (words.empty()){
    return 0;
    }
    else return words.back().size();
    } is this good approach

  • @devmadaan5146
    @devmadaan5146 7 місяців тому +1

    bhaiya ji bina spos kere bhi toh chl rha lc pe

  • @adityaraj-zm7zk
    @adityaraj-zm7zk 7 місяців тому

    why stl is not used in interview

  • @Stressful_Jindagi
    @Stressful_Jindagi 7 місяців тому

    Bhaiya Good Morning, DP ka playlist kab complete hoga?

    • @devmadaan5146
      @devmadaan5146 7 місяців тому

      8 bje bhaith gya tha padhne !! sahi h bc

  • @just_a_guy6985
    @just_a_guy6985 7 місяців тому

    reverse while loop skip indexing
    then next while loop count length if char is present i.e s[i] != ' '

  • @souravjoshi2293
    @souravjoshi2293 7 місяців тому +3

    sir aapne bola tha 50k hone par you will tell us how you started this channel. bhool mat jana . also face reveal kardo ab

  • @SohailKhan-cx9gb
    @SohailKhan-cx9gb 7 місяців тому +1

    int lengthOfLastWord(string s) {
    int n=s.size();
    int len=0;
    bool found=false;
    for(int i=n-1; i>=0; i--){
    if(s[i]!=' '){
    len++;
    found=true;
    }
    else if(found==true){
    break;
    }
    }
    return len;
    }

  • @bhuppidhamii
    @bhuppidhamii 7 місяців тому +1

    solved by stringstream

    • @EB-ot8uu
      @EB-ot8uu 7 місяців тому

      can you please share your code bro.

    • @bhuppidhamii
      @bhuppidhamii 7 місяців тому +2

      ​@@EB-ot8uu
      class Solution {
      public:
      int lengthOfLastWord(string s) {
      stringstream ss(s);
      string word;
      int l = 0;
      while (ss >> word) {
      l = word.length();
      }
      return l;
      }
      };

    • @gui-codes
      @gui-codes 7 місяців тому +2

      @@bhuppidhamii wow. where can I learn more about stringstream

    • @bhuppidhamii
      @bhuppidhamii 7 місяців тому

      in YT there are plenty of videos + there are a lot of doc in gfg's as well@@gui-codes

  • @joydeep-halder
    @joydeep-halder 7 місяців тому

    Aproach 1 🤯🤯 Mai kitna hard tarikhe se kiya tha.
    int lengthOfLastWord(string s) {
    int n = s.size();
    int lastCount=0;
    int currentCount = 0;
    for(int i=0; i

  • @PRINCE-pt5gx
    @PRINCE-pt5gx 7 місяців тому

    int length = 0;
    bool counting = false;
    for (int i = s.length() - 1; i >= 0; i--) {
    if (s[i] != ' ') {
    counting = true;
    length++;
    }
    else if (counting) {
    break; // will it terminate if the space encountered after last word and result [0]
    }
    }
    return length;

  • @dayashankarlakhotia4943
    @dayashankarlakhotia4943 7 місяців тому

    your java code for 2nd approach give wrong answers.
    public int lengthOfLastWord(String s){
    s=s.trim();
    int lastSpace =s.lastIndexOf(' ');
    return lastSpace==-1?s.length():s.length()-lastSpace-1;
    }
    this code is passed all testcase.🎉❤

  • @crazy6822
    @crazy6822 7 місяців тому

    I'm 2023 passout btech cse(Tier 2) and don't get a good placement so i'm too confused whether i should give CAT or GATE for better career growth(I don't know whether my interest lies in coding or anything else). Can you please help me in choosing a right career path 🥲

    • @lofireverbz-wy7go
      @lofireverbz-wy7go 7 місяців тому

      how much coding you have done?

    • @crazy6822
      @crazy6822 7 місяців тому

      @@lofireverbz-wy7go 700+ questions all together 🥺