Loading...

09-20 leetcode 0392

链接 392. Is Subsequence

题目

Given two strings s and t, return true if s is a subsequence of t, or false otherwise.

A subsequence of a string is a new string that is formed from the original string by deleting some (can be none) of the characters without disturbing the relative positions of the remaining characters. (i.e., “ace” is a subsequence of “abcde” while “aec” is not).

题解

这题没啥好说的,遍历求解

1
2
3
4
5
6
7
class Solution:
def isSubsequence(self, s: str, t: str) -> bool:
index = 0
for i in range(len(t)):
if index < len(s) and s[index] == t[i]:
index += 1
return index == len(s)

Comment