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
- 파이썬
- Number Theory
- two pointers
- geometry
- Math
- sorting
- 코딩테스트
- Tree
- greedy
- Data Structure
- bit manipulation
- hash table
- 자바
- string
- simulation
- 구현
- Stack
- java
- Binary Tree
- SQL
- implement
- Binary Search
- Matrix
- dynamic programming
- 코테
- array
- Method
- Counting
- database
- Class
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 977. Squares of a Sorted Array 본문
1. Input
1) int 배열 nums
2. Output
1) nums의 요소를 제곱한 후 오름차순으로 정렬한 배열
3. Constraint
1) 1 <= nums.length <= 10^4
2) - 10^4 <= nums[i] <= 10^4
3) nums의 요소는 오름차순으로 정렬되어있다,
4. Example
Input: nums = [-4,-1,0,3,10] -> Output: [0,1,9,16,100]
설명: 각 요소를 제곱하면 [16, 1, 0, 9, 100]이고, 이를 오름차순으로 정렬하면 [0, 1, 9, 16, 100]이 된다.
5. Code
1) 첫 코드(2022/06/17)
for(int i=0 ; i<nums.length ; i++)
nums[i] *= nums[i];
Arrays.sort(nums);
return nums;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1051. Height Checker (0) | 2022.12.16 |
---|---|
[LeetCode/Easy] 1009. Complement of Base 10 Integer (0) | 2022.12.16 |
[LeetCode/Easy] 961. N-Repeated Element in Size 2N Array (0) | 2022.12.16 |
[LeetCode/Easy] 283. Move Zeroes (0) | 2022.12.10 |
[LeetCode/Easy] 944. Delete Columns to Make Sorted (0) | 2022.12.10 |