遍历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
};
遍历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
网友评论