[Swift 알고리즘] - 자연수 뒤집어 배열로 만들기 (Programmers)
https://school.programmers.co.kr/learn/courses/30/lessons/12932 문제 사진 내 풀이 1. func solution(_ n:Int64) -> [Int] { var arr = String(n).map { $0 } var resultStr: [String] = [] var resultInt: [Int] = [] for i in arr { resultStr.append(String(i)) } for _ in resultStr { resultInt.append(Int(resultStr.popLast()!)!) } return resultInt } 비효율적이라 생각한다. 빈배열과 for문을 두번 써야한다는점과 가독성 측면에서도 별로여서 아래처럼 리팩토링을 해봤다. ..
iOS
2022. 11. 5. 12:37
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Swift 내림차순
- CS 네트워크
- swift property
- Swift RIBs
- Swift 알고리즘
- Swift 프로그래머스
- Swift final
- Swift init
- Swift Error Handling
- RIBs tutorial
- iOS error
- Class
- RTCCameraVideoCapturer
- Swift
- Swift Leetcode
- ios
- swift 고차함수
- Swift joined
- Combine: Asynchronous Programming with Swift
- Swift 프로퍼티
- 2023년 회고
- swift (programmers)
- 원티드 프리온보딩
- swift reduce
- swift programmers
- removeLast()
- Swift inout
- swift protocol
- Swift joined()
- Swift ModernRIBs
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함