Python 判断子序列
Posted 攻城红卫兵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 判断子序列相关的知识,希望对你有一定的参考价值。
s = "abc"
t = "ahbgdc"
class Solution:
def isSubsequence(self, s: str, t: str):
for i in range(len(s)):
if s[i] in t:
if i <= t.index(s[i]) :
return s;
else:
return false
以上是关于Python 判断子序列的主要内容,如果未能解决你的问题,请参考以下文章