티스토리 뷰
Problem
Given an integer num, repeatedly add all its digits until the result has only one digit, and return it.
Example 1:
Input: num = 38
Output: 2
Explanation: The process is
38 --> 3 + 8 --> 11
11 --> 1 + 1 --> 2
Since 2 has only one digit, return it.
Example 2:
Input: num = 0
Output: 0
Constraints:
- 0 <= num <= 2^31 - 1
Solution
정수가 주어질 때 반복적으로 각 자리 수를 한 자리 수가 될 때까지 더해 결과를 반환하는 문제입니다.
여러 가지 방법이 있겠지만 수학적으로 접근해야 가장 좋은 성능의 답을 얻을 수 있습니다.
class Solution {
public int addDigits(int num) {
if (num == 0) return 0;
if (num % 9 == 0) return 9;
return num % 9;
}
}
- n이 0일 땐 답이 0입니다.
- n이 9의 배수일 땐 답이 9입니다.
- n이 9의 배수가 아닐 땐 n을 9로 나눈 나머지 값입니다.
2번과 3번 케이스를 합치면
- n이 0이 아닐 때 1 + (n-1) % 9가 됩니다.
class Solution {
public int addDigits(int num) {
return num == 0 ? 0 : 1 + (num - 1) % 9;
}
}
Test
package io.lcalmsky.leetcode.add_digits;
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 givenDigit_whenAddUntilOneDigit_thenCorrect() {
assertAll(
() -> test(38, 2),
() -> test(0, 0)
);
}
private void test(int given, int expected) {
// when
Solution addDigits = new Solution();
int actual = addDigits.addDigits(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
23. Merge k Sorted Lists (0) | 2022.02.17 |
---|---|
525. Contiguous Array (0) | 2022.02.16 |
389. Find the Difference (0) | 2022.02.14 |
80. Remove Duplicates from Sorted Array II (0) | 2022.02.13 |
438. Find All Anagrams in a String (0) | 2022.02.07 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 함께 자라기 후기
- Spring Data JPA
- Jackson
- spring boot jwt
- 스프링 부트 회원 가입
- @ManyToOne
- 클린 아키텍처
- 헥사고날 아키텍처
- 알고리즘
- 함께 자라기
- spring boot app
- Spring Boot JPA
- gRPC
- 스프링부트
- QueryDSL
- leetcode
- Spring Boot
- 스프링 부트 튜토리얼
- intellij
- spring boot application
- Linux
- r
- proto3
- Java
- JSON
- 스프링 부트
- 스프링 데이터 jpa
- 스프링 부트 애플리케이션
- Spring Boot Tutorial
- 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 | 31 |
글 보관함