美文网首页
leetcode_392判断子序列

leetcode_392判断子序列

作者: 看到这朵小fa了么 | 来源:发表于2020-07-27 09:57 被阅读0次

    遍历t,同时更新s的索引,当最后都能匹配上则s为t的子序列

    var isSubsequence = function(s, t) {
      let c = 0
      for(let i=0; i<t.length; i++){
          if(s[c]===t[i]){
              c++
          }
      }
      if(c===s.length) {
          return true
      } else return false
    };
    

    相关文章

      网友评论

          本文标题:leetcode_392判断子序列

          本文链接:https://www.haomeiwen.com/subject/yagalktx.html