티스토리 뷰
Problem
Given two strings s and t, return true if they are equal when both are typed into empty text editors. '#' means a backspace character.
Note that after backspacing an empty text, the text will continue empty.
Example 1:
Input: s = "ab#c", t = "ad#c"
Output: true
Explanation: Both s and t become "ac".
Example 2:
Input: s = "ab##", t = "c#d#"
Output: true
Explanation: Both s and t become "".
Example 3:
Input: s = "a#c", t = "b"
Output: false
Explanation: s becomes "c" while t becomes "b".
Constraints:
- 1 <= s.length, t.length <= 200
- s and t only contain lowercase letters and '#' characters.
Follow up: Can you solve it in O(n) time and O(1) space?
Solution
두 개의 문자열이 주어지는데 #은 백스페이스를 의미합니다.
두 문자열을 텍스트 에디터에 입력했을 때 같은지 여부를 반환하는 문제입니다.
각 문자의 #이 위치한 인덱스를 찾아 #과 앞의 문자를 제거해 준 뒤 비교하는 방식으로 풀이하였습니다.
package io.lcalmsky.leetcode.backspace_string_compare;
public class Solution {
public boolean backspaceCompare(String s, String t) {
return remove(s).equals(remove(t));
}
private String remove(String origin) {
StringBuilder sb = new StringBuilder(origin);
while (true) {
int index = sb.indexOf("#");
if (index == -1) {
break;
}
sb.deleteCharAt(index);
if (index > 0) {
sb.deleteCharAt(index - 1);
}
}
return sb.toString();
}
}
Test
package io.lcalmsky.leetcode.backspace_string_compare;
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
public void givenTwoStrings_whenBackspace_thenCorrect() {
assertAll(
() -> test("ab#c", "ad#c", true),
() -> test("ab##", "c#d#", true),
() -> test("a##c", "#a#c", true),
() -> test("a#c", "b", false)
);
}
private void test(String s, String t, boolean expected) {
// when
Solution solution = new Solution();
boolean actual = solution.backspaceCompare(s, t);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
1679. Max Number of K-Sum Pairs (0) | 2022.05.10 |
---|---|
99. Recover Binary Search Tree (0) | 2022.05.07 |
703. Kth Largest Element in a Stream (0) | 2022.05.05 |
705. Design HashSet (0) | 2022.05.04 |
410. Split Array Largest Sum (0) | 2022.05.03 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 클린 아키텍처
- Spring Boot
- QueryDSL
- 스프링부트
- leetcode
- 알고리즘
- 스프링 데이터 jpa
- @ManyToOne
- 스프링 부트 애플리케이션
- Jackson
- 헥사고날 아키텍처
- Java
- 함께 자라기 후기
- 스프링 부트
- Spring Boot JPA
- JSON
- intellij
- 스프링 부트 회원 가입
- spring boot application
- spring boot app
- Spring Boot Tutorial
- proto3
- JPA
- spring boot jwt
- r
- gRPC
- 함께 자라기
- Linux
- 스프링 부트 튜토리얼
- Spring Data JPA
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함