티스토리 뷰
728x90
내 풀이
func sortedSquares(_ nums: [Int]) -> [Int] {
return nums.map { ($0 * $0) }.sorted()
}
sortedSquares([-7,-3,2,3,11])
배운것
sorted(by:)
요소(elements)들 간의 비교로 정렬을 해줍니다.
예제
let numArr = [-7,-3,2,3,11]
print(numArr.sorted()) // 오름차순
// [-7, -3, 2, 3, 11]
print(numArr.sorted(by: >)) // 내림차순
// [11, 3, 2, -3, -7]
728x90
'알고리즘' 카테고리의 다른 글
[Swift 알고리즘] - 문자열을 정수로 바꾸기 (Programmers) (0) | 2022.10.04 |
---|---|
[Swift 알고리즘] - 알수없는 숫자 더하기 (Programmers) (1) | 2022.10.01 |
[Swift 알고리즘] - Find Numbers with Even Number of Digits(Leetcode) (0) | 2022.05.19 |
[Swift 알고리즘] - 키패드 누르기 (Programmers) (0) | 2022.05.18 |
[Swift 알고리즘] - 이상한 문자 만들기(Programmers) (0) | 2022.05.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Swift init
- Swift Leetcode
- RTCCameraVideoCapturer
- CS 네트워크
- 2023년 회고
- Swift RIBs
- Swift joined
- swift programmers
- ios
- swift protocol
- Swift final
- Class
- RIBs tutorial
- Swift 알고리즘
- Swift 프로그래머스
- swift reduce
- Swift Error Handling
- Swift inout
- Swift joined()
- Swift 프로퍼티
- Swift 내림차순
- Combine: Asynchronous Programming with Swift
- swift 고차함수
- 원티드 프리온보딩
- Swift
- swift (programmers)
- Swift ModernRIBs
- iOS error
- swift property
- removeLast()
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함