티스토리 뷰
Problem
An integer has sequential digits if and only if each digit in the number is one more than the previous digit.
Return a sorted list of all the integers in the range [low, high] inclusive that have sequential digits.
Example 1:
Input: low = 100, high = 300
Output: [123,234]
Example 2:
Input: low = 1000, high = 13000
Output: [1234,2345,3456,4567,5678,6789,12345]
Constraints:
- 10 <= low <= high <= 10^9
Solution
각 자리의 숫자가 증가하는 숫자를 sequential digit이라고 부릅니다.
low값과 high값이 주어질 때 해당 범위 안에 sequential digit들을 정렬된 리스트로 반환하는 문제입니다.
import java.util.ArrayList;
import java.util.List;
public class Solution {
public List<Integer> sequentialDigits(int low, int high) {
String digits = "123456789";
List<Integer> result = new ArrayList<>();
int lowLength = String.valueOf(low).length();
int highLength = String.valueOf(high).length();
for (int i = lowLength; i <= highLength; i++) { // (1)
for (int j = 0; j < 10 - i; j++) {
int num = Integer.parseInt(digits.substring(j, j + i)); // (2)
if (num >= low && num <= high) { // (3)
result.add(num);
}
}
}
return result;
}
}
- low의 길이부터 high의 길이까지 반복합니다.
- j에서 j+i번째까지 연속된 숫자를 구합니다.
- low와 high 범위 내에 해당 숫자가 존재하면 결과에 추가합니다.
Test
package io.lcalmsky.leetcode.sequential_digits;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.util.List;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(100, 300, List.of(123, 234)),
() -> test(1000, 13000, List.of(1234, 2345, 3456, 4567, 5678, 6789, 12345))
);
}
private void test(int low, int high, List<Integer> expected) {
// when
Solution solution = new Solution();
List<Integer> actual = solution.sequentialDigits(low, high);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
211. Design Add and Search Words Data Structure (0) | 2022.02.01 |
---|---|
1305. All Elements in Two Binary Search Trees (0) | 2022.01.31 |
941. Valid Mountain Array (0) | 2022.01.29 |
520. Detect Capital (0) | 2022.01.28 |
1510. Stone Game IV (0) | 2022.01.27 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 함께 자라기
- Spring Boot
- 스프링 부트 튜토리얼
- JSON
- Jackson
- QueryDSL
- 스프링 부트 애플리케이션
- 스프링부트
- leetcode
- spring boot application
- Linux
- intellij
- JPA
- spring boot jwt
- 알고리즘
- 스프링 부트 회원 가입
- 스프링 부트
- Spring Boot Tutorial
- 클린 아키텍처
- proto3
- 헥사고날 아키텍처
- Spring Data JPA
- 스프링 데이터 jpa
- Spring Boot JPA
- gRPC
- Java
- 함께 자라기 후기
- @ManyToOne
- spring boot app
- r
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함