Notice
250x250
Recent Posts
Recent Comments
Link
넘치게 채우기
[LeetCode] 977. Squares of a Sorted Array 본문
728x90
반응형
https://leetcode.com/problems/squares-of-a-sorted-array/description/
Leetcode - Squares of a Sorted Array
문제 유형 : 정렬
문제 난이도 : Easy
문제
Given an integer array nums sorted in non-decreasing order, return an array of the squares of each number sorted in non-decreasing order.
정수 배열 nums를 오름차순으로 준다. 각 숫자의 제곱수 배열을 오름차순으로 반환하시오.
풀이
각 숫자에 대해서 제곱을 한 뒤, 정렬해주면 된다.
코드
C++
#pragma GCC optimize("03", "unroll-loops");
static const int __ = [](){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
return 0;
}();
class Solution {
public:
vector<int> sortedSquares(vector<int>& nums) {
for(auto &num : nums) {
num = num*num;
}
sort(nums.begin(), nums.end());
return nums;
}
};
728x90
반응형
'PS > LeetCode' 카테고리의 다른 글
[LeetCode] 948. Bag of Tokens (0) | 2024.03.04 |
---|---|
[LeetCode] 19. Remove Nth Node From End of List (0) | 2024.03.03 |
[LeetCode] 2864. Maximum Odd Binary Number (0) | 2024.03.01 |
[LeetCode] 1609. Even Odd Tree (0) | 2024.02.29 |
[LeetCode] 513. Find Bottom Left Tree Value (0) | 2024.02.28 |