摘要: leetcode_打卡11 题目:392. 判断子序列 代码: class Solution { public boolean isSubsequence(String s, String t) { int n = s.length(), m = t.length(); int i = 0, j = 阅读全文
posted @ 2023-04-22 23:15 ZLey 阅读(10) 评论(0) 推荐(0) 编辑