티스토리 뷰
Problem
Given an array of integers nums containing n + 1 integers where each integer is in the range [1, n] inclusive.
There is only one repeated number in nums, return this repeated number.
You must solve the problem without modifying the array nums and uses only constant extra space.
Example 1:
Input: nums = [1,3,4,2,2]
Output: 2
Example 2:
Input: nums = [3,1,3,4,2]
Output: 3
Constraints:
- 1 <= n <= 10^5
- nums.length == n + 1
- 1 <= nums[i] <= n
- All the integers in nums appear only once except for precisely one integer which appears two or more times.
Follow up:
- How can we prove that at least one duplicate number must exist in nums?
- Can you solve the problem in linear runtime complexity?
Solution
n + 1개의 정수 배열이 주어지고 정수의 범위는 1~n까지 입니다.
하나의 중복 원소가 존재할 때 해당 원소를 반환하는 문제입니다.
플로이드의 토끼와 거북이 알고리즘(순환 알고리즘)을 이용하면 됩니다.
이 방법은 배열을 해시맵 형태로 사용하는 것과 동일합니다.
해시맵에 값을 저장해나가는데 동일한 값이 저장되는 시점이 중복된 원소를 발견하는 시점이 됩니다.
package io.lcalmsky.leetcode.find_the_duplicate_number;
public class Solution {
public int findDuplicate(int[] nums) {
while (nums[0] != nums[nums[0]]) {
int next = nums[nums[0]];
nums[nums[0]] = nums[0];
nums[0] = next;
}
return nums[0];
}
}
Test
package io.lcalmsky.leetcode.find_the_duplicate_number;
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 givenArray_whenFindDuplicates_thenCorrect() {
assertAll(
() -> test(new int[]{1, 3, 4, 2, 2}, 2),
() -> test(new int[]{3, 1, 3, 4, 2}, 3)
);
}
private void test(int[] given, int expected) {
// when
Solution solution = new Solution();
int actual = solution.findDuplicate(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
881. Boats to Save People (0) | 2022.04.09 |
---|---|
74. Search a 2D Matrix (0) | 2022.04.08 |
1337. The K Weakest Rows in a Matrix (0) | 2022.04.03 |
704. Binary Search (0) | 2022.04.02 |
1029. Two City Scheduling (0) | 2022.04.01 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- r
- 함께 자라기 후기
- Jackson
- Spring Data JPA
- Java
- spring boot jwt
- Spring Boot
- gRPC
- 스프링 부트 회원 가입
- QueryDSL
- 스프링 부트 튜토리얼
- intellij
- JPA
- spring boot application
- 클린 아키텍처
- proto3
- Spring Boot Tutorial
- 스프링 부트 애플리케이션
- JSON
- 스프링 부트
- spring boot app
- leetcode
- Spring Boot JPA
- @ManyToOne
- Linux
- 스프링 데이터 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 |
글 보관함