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
- 코딩테스트
- Data Structure
- java
- 파이썬
- greedy
- implement
- simulation
- sorting
- Number Theory
- array
- Matrix
- geometry
- two pointers
- dynamic programming
- Stack
- Math
- Method
- database
- SQL
- 구현
- 자바
- Class
- 코테
- string
- hash table
- Binary Search
- Binary Tree
- bit manipulation
- Tree
- Counting
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1304. Find N Unique Integers Sum up to Zero 본문
1. Input
1) int n
2. Output
1) 길이가 n이면서 요소의 합이 0인 int[] 반환
3. Constraint
1) 1 <= n <= 1000
2) 중복 요소는 없어야 한다.
4. Example
Input: n = 5 -> Output: [-7,-1,1,3,4]
5. Code
1) 첫 코드(2023/04/11)
int[] answer = new int[n];
if(n%2==1) answer[n/2] = 0;
for(int i=0 ; i<n/2 ; i++){
answer[i] = i+1;
answer[n-1-i] = -answer[i];
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1360. Number of Days Between Two Dates (0) | 2023.04.11 |
---|---|
[LeetCode/Medium] 2390. Removing Stars From a String (0) | 2023.04.11 |
[LeetCode/Easy] 1309. Decrypt String from Alphabet to Integer Mapping (0) | 2023.04.11 |
[LeetCode/Easy] 1317. Convert Integer to the Sum of Two No-Zero Integers (0) | 2023.04.10 |
[백준 온라인 저지] 14425. 문자열 집합 (0) | 2023.04.08 |