1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/go/is-subsequence.go

19 lines
211 B
Go
Raw Normal View History

package main
func isSubsequence(s string, t string) bool {
length := len(s)
i := 0
for j := range t {
if i < length && t[j] == s[i] {
i++
}
if i >= length {
break
}
}
return i == length
}