码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode392

时间:2017-05-13 12:35:50      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:==   ems   etc   com   ret   amp   tco   href   solution   

public class Solution {
    public bool IsSubsequence(string s, string t) {
        var i = 0;
            var j = 0;
            while (i < s.Length && j < t.Length)
            {
                if (s[i] == t[j])
                {
                    i++;
                    j++;
                }
                else
                {
                    j++;
                }
            }

            if (i >= s.Length)
            {
                return true;
            }
            else
            {
                return false;
            }
    }
}

https://leetcode.com/problems/is-subsequence/#/description

leetcode392

标签:==   ems   etc   com   ret   amp   tco   href   solution   

原文地址:http://www.cnblogs.com/asenyang/p/6848479.html

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