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
- Counting
- bit manipulation
- array
- greedy
- Matrix
- SQL
- Data Structure
- database
- Math
- hash table
- Stack
- Method
- Number Theory
- Class
- 구현
- 코테
- java
- string
- geometry
- simulation
- 자바
- sorting
- Binary Tree
- Tree
- 코딩테스트
- Binary Search
- implement
- 파이썬
- dynamic programming
- two pointers
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 217. Contains Duplicate 본문
1. Input
1) 정수 배열 arr
2. Output
1) 중복되는 원소가 있을 경우 true 반환
2) 중복되는 원소가 없을 경우 false 반환
3. Constraint
1) 1 <= nums.length <= 105
2) -109 <= nums[i] <= 109
4. Example
Input: nums = [1,2,3,1] -> Output: true (1이 중복되므로)
Input: nums = [1,2,3,4] -> Output: false
5. Code
1) 첫 코드(2022/07/06)
Arrays.sort(nums);
for(int i=0 ; i<nums.length-1 ; i++)
if(nums[i]==nums[i+1])
return true;
return false;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 242. Valid Anagram (0) | 2022.10.13 |
---|---|
[LeetCode/Easy] 231. Power of Two (0) | 2022.10.13 |
[LeetCode/Easy] 191. Number of 1 Bits (0) | 2022.10.12 |
[LeetCode/Easy] 190. Reverse Bits (0) | 2022.10.12 |
[LeetCode/Easy] 171. Excel Sheet Column Number (0) | 2022.10.12 |