티스토리 뷰
Problem
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).
Example 1:
Input: s = "abc", t = "ahbgdc"
Output: true
Example 2:
Input: s = "axc", t = "ahbgdc"
Output: false
Constraints:
- 0 <= s.length <= 100
- 0 <= t.length <= 10^4
- s and t consist only of lowercase English letters.
Follow up: Suppose there are lots of incoming s, say s1, s2, ..., sk where k >= 10^9, and you want to check one by one to see if t has its subsequence. In this scenario, how would you change your code?
Solution
문자열 s와 t가 주어질 때 s가 t의 부분 문자열인지 여부를 반환하는 문제입니다.
연속으로 포함되지 않아도 되기 때문에 다양한 방법으로 풀 수 있습니다.
워낙 간단한 문제라 답만 첨부합니다.
public class Solution {
public boolean isSubsequence(String s, String t) {
if (s == null || s.length() == 0) {
return true;
}
int sIndex = 0, tIndex = 0;
while (sIndex < s.length() && tIndex < t.length()) {
if (s.charAt(sIndex) == t.charAt(tIndex)) {
sIndex++;
}
tIndex++;
if (sIndex == s.length()) {
return true;
}
}
return false;
}
}
public boolean isSubsequence(String s, String t) {
for (char ch : s.toCharArray()) {
int find = t.indexOf(ch);
if (find == -1) {
return false;
}
t = t.substring(find + 1);
}
return true;
}
public boolean isSubsequence(String s, String t) {
int start = 0;
int count = 0;
for (int i = 0; i < s.length(); i++) {
char ch = s.charAt(i);
while (start < t.length()) {
if (ch == t.charAt(start)) {
count++;
start++;
break;
}
start++;
}
}
return count == s.length();
}
Test
package io.lcalmsky.leetcode.is_subsequence;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void givenTwoStrings_whenFindOneIsSubsequenceOfAnother_thenCorrect() {
assertAll(
() -> test("abc", "ahbgdc", true, new Solution()),
() -> test("axc", "ahbgdc", false, new Solution()),
() -> test("abc", "ahbgdc", true, new Solution2()),
() -> test("axc", "ahbgdc", false, new Solution2()),
() -> test("abc", "ahbgdc", true, new Solution3()),
() -> test("axc", "ahbgdc", false, new Solution3())
);
}
private void test(String s, String t, boolean expected, Solution solution) {
// when
boolean actual = solution.isSubsequence(s, t);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
21. Merge Two Sorted Lists (0) | 2022.03.13 |
---|---|
740. Delete and Earn (0) | 2022.03.12 |
338. Counting Bits (0) | 2022.03.08 |
228. Summary Ranges (0) | 2022.03.05 |
24. Swap Nodes in Pairs (0) | 2022.03.04 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Linux
- 스프링 부트
- Spring Boot
- QueryDSL
- spring boot application
- 스프링 부트 회원 가입
- JPA
- Spring Data JPA
- spring boot jwt
- Spring Boot JPA
- 스프링 부트 튜토리얼
- JSON
- Spring Boot Tutorial
- 스프링 데이터 jpa
- Java
- @ManyToOne
- proto3
- gRPC
- spring boot app
- 헥사고날 아키텍처
- Jackson
- 스프링 부트 애플리케이션
- r
- 함께 자라기 후기
- 클린 아키텍처
- 스프링부트
- leetcode
- 알고리즘
- 함께 자라기
- intellij
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함