Length of Last Word (LeetCode 58) | Full solution with examples | Easiest Method

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

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

  • @Maneeshce2007
    @Maneeshce2007 ปีที่แล้ว +9

    I solved this using String.trim() function .

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

      that's why use cpp for logic building

  • @myosith4795
    @myosith4795 9 หลายเดือนก่อน +1

    Excellent bro without trim function

  • @sravansunkara
    @sravansunkara 2 หลายเดือนก่อน +1

    Excellent solution

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

    Your explanation is very good and easy to grasp love your videos ❤️ keep growing

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

      thanks for your wishes

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

    class Solution
    {
    public int lengthOfLastWord(String s)
    {
    String[] args = s.split(" ");
    String wrd = args[args.length-1];
    return wrd.length();
    }
    }

  • @amstudio3386
    @amstudio3386 7 หลายเดือนก่อน +1

    great

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

    Thank you Nikhil, Can you just explain me how
    else{
    if(count>0)
    return count;
    }
    this works??

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

      check the 3 line comment. what are you struggling with?

  • @anubhav.codess
    @anubhav.codess 11 หลายเดือนก่อน +1

    public int lengthOfLastWord(String s) {

    int count=0;
    for(int i=s.length()-1;i>=0;i--)
    {
    if(s.charAt(i)!=' ')
    {
    count=count+1;
    }
    else if(s.charAt(i)==' '&&count>=1)
    {
    break;
    }
    }
    return count;

    }
    } enjoy bachoooo

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

    Sure

  • @ВикторПетров-е9ъ
    @ВикторПетров-е9ъ ปีที่แล้ว

    Thanks, could you make a video of Leetcode 22. "Generate Parentheses" problem solution with DP?

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

      gonna make it soon

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

    Does it work if the input is a single character

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

    you are the best !!

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

    I'm asking you to make a videos hoe to input a tree, how to output a tree, most common trees in CP

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

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

    can we use trim() method na two remove the spaces

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

      Yes we can

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

    String[] arr = str.split(" ");
    String lastWord = arr[arr.length-1];
    return lastWord.length();
    what about this code

    • @nikoo28
      @nikoo28  10 หลายเดือนก่อน +1

      works perfectly as well

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

    But input is single word how to find bro

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

      If single word, then that is the last word. So just return its length

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

      @@nikoo28 if one word occurs just return 0 bro

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

    runtime error aa raha h bhai

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

      check the code in the video description

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

    int lengthOfLastWord(string s) {
    int i=0;
    int ans;
    for(i=0;i