Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- java
- array
- database
- Binary Tree
- greedy
- Method
- Data Structure
- Number Theory
- bit manipulation
- 코테
- hash table
- dynamic programming
- SQL
- 코딩테스트
- 구현
- sorting
- Class
- Tree
- 자바
- Binary Search
- Matrix
- implement
- string
- 파이썬
- Stack
- simulation
- Math
- geometry
- Counting
- two pointers
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 136. Single Number 본문
1. Input
1) 정수를 담은 배열 nums
2) nums는 빈 배열이 아니다.
2. Output
1) 배열에서 딱 1번만 나타나는 원소
3. Constraint
1) 1 <= nums.length <= 3 * 104
2) -3 * 104 <= nums[i] <= 3 * 104
3) 배열에 1개의 원소는 1개만 있고, 나머지 원소는 2개씩 들어있다.
4. Example
Input: nums = [4,1,2,1,2]
Output: 4
설명
- 1이 2개, 2가 2개, 4가 1개 있으므로 4를 반환한다.
5. Code
1) 첫 코드(2022/07/22)
List<Integer> list = new ArrayList();
for(int i=0 ; i<nums.length ; i++){
if(list.remove(Integer.valueOf(nums[i])))
continue;
else
list.add(nums[i]);
}
return list.get(0);
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 190. Reverse Bits (0) | 2022.10.12 |
---|---|
[LeetCode/Easy] 171. Excel Sheet Column Number (0) | 2022.10.12 |
[LeetCode/Easy] 125. Valid Palindrome (0) | 2022.10.11 |
[LeetCode/Easy] 88. Merge Sorted Array (0) | 2022.08.24 |
[LeetCode/Easy] 69. Sqrt(x) (0) | 2022.08.23 |