티스토리 뷰
Problem
Given a non-empty array of integers nums, every element appears twice except for one. Find that single one.
You must implement a solution with a linear runtime complexity and use only constant extra space.
Example 1:
Input: nums = [2,2,1]
Output: 1
Example 2:
Input: nums = [4,1,2,1,2]
Output: 4
Example 3:
Input: nums = [1]
Output: 1
Constraints:
- 1 <= nums.length <= 3 * 10^4
- -3 * 10^4 <= nums[i] <= 3 * 10^4
- Each element in the array appears twice except for one element which appears only once.
Solution
비어있지 않은 정수배열이 주어지는데 이 배열에서 하나의 원소를 제외하고는 모두 두 번씩 나타날 때 한 번만 나타나는 원소를 구하는 문제입니다.
비트 연산 중 XOR를 이용해 풀 수 있습니다.
public class Solution {
public int singleNumber(int[] nums) {
int x = 0;
for (int num : nums) {
x ^= num;
}
return x;
}
}
초기 값을 0으로 두고 배열의 원소들을 순차적으로 XOR 연산을 취하게 되면 처음엔 배열의 첫 번째 수가 되고 그 이후로는 이진수를 취했을 때 서로 다른 비트일 때만 각 자리의 수가 1이 되므로 아래 처럼 됩니다.
init:
x = 0
i = 0:
x = 0 ^ 4
0000
0100
----
0100 = 4
i = 1:
x = 4 ^ 1
0100
0001
----
0101 = 5
i = 2:
x = 5 ^ 2
0101
0010
----
0111 = 7
i = 3:
x = 7 ^ 1
0111
0001
----
0110 = 6
i = 4:
x = 6 ^ 2
0110
0010
----
0100 = 4
같은 수를 XOR 연산 취하게되면 0이되고, 0과 하나 남은 수를 XOR 연산하게되면 그 수가 되는 원리입니다.
Test
package io.lcalmsky.leetcode.single_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_whenFindUniqueNumber_thenCorrect() {
assertAll(
() -> test(new int[]{2, 2, 1}, 1),
() -> test(new int[]{4, 1, 2, 1, 2}, 4)
);
}
private void test(int[] given, int expected) {
// when
Solution singleNumber = new Solution();
int actual = singleNumber.singleNumber(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
1288. Remove Covered Intervals (0) | 2022.02.27 |
---|---|
1675. Minimize Deviation in Array (0) | 2022.02.26 |
39. Combination Sum (0) | 2022.02.24 |
104. Maximum Depth of Binary Tree (0) | 2022.02.20 |
560. Subarray Sum Equals K (0) | 2022.02.19 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- spring boot app
- 함께 자라기
- Spring Boot JPA
- Java
- Linux
- @ManyToOne
- 스프링부트
- r
- gRPC
- 스프링 데이터 jpa
- 알고리즘
- 스프링 부트 회원 가입
- 헥사고날 아키텍처
- QueryDSL
- 스프링 부트
- JPA
- intellij
- Jackson
- 클린 아키텍처
- Spring Boot Tutorial
- 스프링 부트 튜토리얼
- leetcode
- 함께 자라기 후기
- 스프링 부트 애플리케이션
- Spring Data JPA
- proto3
- JSON
- spring boot jwt
- Spring Boot
- spring boot application
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함