[Swift 알고리즘] - 알수없는 숫자 더하기 (Programmers)
https://school.programmers.co.kr/learn/courses/30/lessons/86051 문제 사진 내 풀이 0부터 9까지의 총합은 45니까 45 - numbers 내부의 있는 총합 으로 답을 구했다. func solution(_ numbers:[Int]) -> Int { return 45 - numbers.reduce(0, +) } 다른사람의 풀이 func solution(_ numbers:[Int]) -> Int { let result = (0...9) .filter { !numbers.contains($0) } .reduce(0) { $0 + $1 } return result }
알고리즘
2022. 10. 1. 13:12
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Swift Leetcode
- 2023년 회고
- RTCCameraVideoCapturer
- Combine: Asynchronous Programming with Swift
- Swift Error Handling
- iOS error
- swift protocol
- Swift final
- RIBs tutorial
- removeLast()
- ios
- Swift ModernRIBs
- Class
- Swift
- swift reduce
- Swift 알고리즘
- swift (programmers)
- Swift inout
- Swift 프로그래머스
- Swift 내림차순
- Swift joined()
- Swift 프로퍼티
- Swift joined
- 원티드 프리온보딩
- swift programmers
- swift property
- Swift RIBs
- Swift init
- swift 고차함수
- CS 네트워크
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함