Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- database
- 구현
- Data Structure
- bit manipulation
- dynamic programming
- Method
- 코딩테스트
- Stack
- greedy
- Matrix
- Binary Tree
- SQL
- java
- geometry
- Class
- hash table
- 코테
- Math
- sorting
- 파이썬
- implement
- Binary Search
- 자바
- array
- simulation
- two pointers
- string
- Counting
- Tree
- Number Theory
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 392. Is Subsequence 본문
1. Input
1) String s
2) String t
2. Output
1) s가 t의 subsequence라면 true, 아니면 false를 반환
- subsequence란 문자가 연속적이지 않아도 차례대로 다른 문자열에 순서대로 있는 것을 말한다. 예를 들면 “ace"는 "abcde"의 subsequence지만 ”aec"는 아니다.
3. Constraint
1) 0 <= s.length <= 100
2) 0 <= t.length <= 10^4
3) s와 t는 영어 소문자로만 이루어져 있다.
4. Example
Input: s = "abc", t = "ahbgdc" -> Output: true
Input: s = "axc", t = "ahbgdc" -> Output: false
5. Code
1) 첫 코드(2023/05/18)
class Solution {
public boolean isSubsequence(String s, String t) {
if(s.length()>t.length())
return false;
else if(t.equals("") || s.equals(""))
return true;
else if(s.length()==t.length())
return s.equals(t);
int pre = t.indexOf(s.charAt(0)), index = 1;
while(index<s.length()){
boolean find = false;
for(int i=pre+1 ; i<t.length() && !find ; i++)
if(t.charAt(i)==s.charAt(index)){
pre = i; index++; find = true;
}
if(!find)
return false;
}
return true;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 459. Repeated Substring Pattern (0) | 2023.05.19 |
---|---|
[LeetCode/Easy] 415. Add Strings (0) | 2023.05.19 |
[LeetCode/Easy] 303. Range Sum Query - Immutable (0) | 2023.05.18 |
[LeetCode/Easy] 389. Find the Difference (0) | 2023.05.18 |
[LeetCode/Easy] 387. First Unique Character in a String (0) | 2023.05.18 |