[Swift 알고리즘] - 제일 작은 수 제거하기 (Programmers)
https://school.programmers.co.kr/learn/courses/30/lessons/12935 문제 사진 내 풀이 func solution(_ arr:[Int]) -> [Int] { guard arr.count > 1 else { return [-1] } guard let index = arr.firstIndex(of: arr.min()!) else { return [-1] } var result: [Int] = arr result.remove(at: index) return result } 비교할게 없을때 [-1] return 최소값 구하기 min() 메서드 제일 작은값의 인덱스 구하기 구한 인덱스 삭제 remove(at:) 다른사람의 풀이 func solution(_ arr:[In..
알고리즘
2022. 11. 7. 23:15
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- swift protocol
- Swift init
- Swift Error Handling
- CS 네트워크
- Class
- swift property
- Swift final
- 2023년 회고
- iOS error
- Swift 내림차순
- ios
- Swift 알고리즘
- swift (programmers)
- swift reduce
- Swift ModernRIBs
- Swift
- 원티드 프리온보딩
- Swift RIBs
- Swift 프로퍼티
- Combine: Asynchronous Programming with Swift
- RIBs tutorial
- swift programmers
- Swift 프로그래머스
- swift 고차함수
- Swift joined()
- RTCCameraVideoCapturer
- removeLast()
- Swift joined
- Swift Leetcode
- Swift inout
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함