티스토리 뷰
Algorithm/LeetCode
[LeetCode - Daily Challenge] 1200. Minimum Absolute Difference
Jaime.Lee 2021. 12. 21. 09:00Problem
Given an array of distinct integers arr, find all pairs of elements with the minimum absolute difference of any two elements.
Return a list of pairs in ascending order(with respect to pairs), each pair [a, b] follows
- a, b are from arr
- a < b
- b - a equals to the minimum absolute difference of any two elements in arr
Example 1:
Input: arr = [4,2,1,3]
Output: [[1,2],[2,3],[3,4]]
Explanation: The minimum absolute difference is 1. List all pairs with difference equal to 1 in ascending order.
Example 2:
Input: arr = [1,3,6,10,15]
Output: [[1,3]]
Example 3:
Input: arr = [3,8,-10,23,19,-4,-14,27]
Output: [[-14,-10],[19,23],[23,27]]
Constraints:
- 2 <= arr.length <= 10^5
- -10^6 <= arr[i] <= 10^6
Solution
중복되지 않는 정수 배열이 주어졌을 때 두 원소의 차이가 최소가 되는 모든 쌍을 찾아 반환하는 문제입니다.
아주 단순하게 생각하면 간단히 풀리는 문제로, 먼저 배열을 정렬한 뒤 최소 차이를 구하고, 다시 한 번 탐색하면서 최소 차이와 같을 때 리스트에 추가해주면 쉽게 해결할 수 있습니다.
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class Solution {
public List<List<Integer>> minimumAbsDifference(int[] arr) {
Arrays.sort(arr);
int min = Integer.MAX_VALUE;
for (int i = 1; i < arr.length; i++) {
min = Math.min(min, arr[i] - arr[i - 1]);
}
List<List<Integer>> result = new ArrayList<>();
for (int i = 1; i < arr.length; i++) {
if (arr[i] - arr[i - 1] == min) {
result.add(List.of(arr[i - 1], arr[i]));
}
}
return result;
}
}
Test
package io.lcalmsky.leetcode.minimum_absolute_difference;
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(new int[]{4, 2, 1, 3}, List.of(
List.of(1, 2),
List.of(2, 3),
List.of(3, 4)
)),
() -> test(new int[]{1, 3, 6, 10, 15}, List.of(
List.of(1, 3)
)),
() -> test(new int[]{3, 8, -10, 23, 19, -4, -14, 27}, List.of(
List.of(-14, -10),
List.of(19, 23),
List.of(23, 27)
))
);
}
private void test(int[] given, List<List<Integer>> expected) {
// when
Solution solution = new Solution();
List<List<Integer>> actual = solution.minimumAbsDifference(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode - Daily Challenge] 210. Course Schedule II (0) | 2021.12.24 |
---|---|
[LeetCode - Daily Challenge]143. Reorder List (0) | 2021.12.22 |
[LeetCode - Daily Challenge] 394. Decode String (0) | 2021.12.20 |
[LeetCode - Daily Challenge] 221. Maximal Square (0) | 2021.12.17 |
[LeetCode - Daily Challenge] 147. Insertion Sort List (0) | 2021.12.16 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Spring Boot Tutorial
- 알고리즘
- 함께 자라기 후기
- 스프링부트
- JSON
- leetcode
- 스프링 부트 튜토리얼
- Spring Boot JPA
- Linux
- 클린 아키텍처
- intellij
- Spring Data JPA
- 스프링 부트
- spring boot application
- 스프링 데이터 jpa
- Java
- Jackson
- 헥사고날 아키텍처
- spring boot jwt
- r
- QueryDSL
- Spring Boot
- proto3
- 함께 자라기
- 스프링 부트 회원 가입
- @ManyToOne
- spring boot app
- gRPC
- 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 |
글 보관함