💬 Info
- 난이도 : Easy
- 문제 링크 : https://leetcode.com/problems/is-subsequence
- 풀이 링크 : LeetCode/Easy/Is Subsequence.java
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).
s
and t
consist only of lowercase English letters.풀이 시간 : 10분
class Solution {
public boolean isSubsequence(String s, String t) {
int index = 0;
for (char c : t.toCharArray()) {
if (index < s.length() && s.charAt(index) == c) {
index++;
}
}
return index == s.length();
}
}