码迷,mamicode.com
首页 > 编程语言 > 详细

Python 判断子序列

时间:2020-07-28 10:16:14      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:font   span   turn   orm   new   dex   def   space   lin   

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 判断子序列

标签:font   span   turn   orm   new   dex   def   space   lin   

原文地址:https://www.cnblogs.com/z977690557/p/13388986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!