1455. Check If a Word Occurs As a Prefix of Any Word in a Sentence | 2 Pointer | 1 pass

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

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

  • @rnt_yash
    @rnt_yash 20 วันที่ผ่านมา +1

    it's mentioned in the question that it contains only single spaced words in the sentence :)

    • @ARYANMITTAL
      @ARYANMITTAL  20 วันที่ผ่านมา

      Lol, my bad, thanks man🙇‍♂️

  • @Engineering.Wallah
    @Engineering.Wallah 20 วันที่ผ่านมา +3

    int i=1,n=searchWord.size();
    stringstream s(sentence);
    string word;
    while(s>>word){
    if(word.substr(0,n)==searchWord) return i;
    i++;
    }
    return -1;

    • @ARYANMITTAL
      @ARYANMITTAL  20 วันที่ผ่านมา +1

      Awesome 🙌🏻 🫡