Given an integer array nums sorted in non-decreasing order, return an array of the squares of each number sorted in non-decreasing order.
Acceptance 비율이 높은만큼 쉬운 문제이다. 리스트 안에 내용물을 하나씩 꺼내서 제곱값을 구한 후 반환시키면 되는 문제이다. 파이썬 특성 상 한 줄로도 끝낼 수 있는 간단한 문제다.
class Solution:
def sortedSquares(self, nums: List[int]) -> List[int]:
return sorted([num**2 for num in nums])