Bleeding edge

[LeetCode] 75. Sort Colors - 자바스크립트 0616 본문

코딩테스트 공부

[LeetCode] 75. Sort Colors - 자바스크립트 0616

codevil 2022. 6. 16. 13:33

https://leetcode.com/problems/sort-colors/

 

Sort Colors - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

sort를 활용해서 푸는 문제이다. 오늘 풀었던 easy문제보다 쉬운문제이다. easy로 난이도 조정이 되야하지 않을까..생각이 든다.

var sortColors = function(nums) {
   return nums.sort((a,b)=>a-b) 
};