https://school.programmers.co.kr/learn/courses/30/lessons/12917 문제 사진 내 풀이 func solution(_ s:String) -> String { return String(s.sorted(by: >)) } solution("Zbcdefg") // gfedcbZ 처음 생각했던 방법은 filter() 메서드를 사용하여 isLowercase, isUppercase 로 소문자, 대문자를 걸러서 sorted() 를 사용해 마지막으로 합칠 생각이었으나... sorted(by: >) 내림차순으로 정리하면 소문자(z ~ a) → 대문자 (Z ~ A) 순으로 알아서 정리를 해줬다.. 나름 머리를 굴렸지만 메서드 하나로 해결되는거에 신기하면서도 허탈했다 🌝
https://leetcode.com/explore/learn/card/fun-with-arrays/521/introduction/3240/discuss/234202/Swift-no-brainer 내 풀이 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: >)) // 내림차순 ..
- Total
- Today
- Yesterday
- Swift ModernRIBs
- swift reduce
- swift programmers
- Swift 프로그래머스
- swift property
- Combine: Asynchronous Programming with Swift
- ios
- Swift init
- RTCCameraVideoCapturer
- Swift final
- swift 고차함수
- Swift joined()
- Swift 알고리즘
- 2023년 회고
- Swift 프로퍼티
- 원티드 프리온보딩
- Swift inout
- Swift
- Swift Error Handling
- swift protocol
- Swift 내림차순
- Swift RIBs
- swift (programmers)
- Swift joined
- Class
- CS 네트워크
- Swift Leetcode
- removeLast()
- iOS error
- RIBs tutorial
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |