https://school.programmers.co.kr/learn/courses/30/lessons/120912 문제 사진 내 풀이 import Foundation func solution(_ array:[Int]) -> Int { return array.map { String($0) }.joined(separator: "").filter { $0 == "7" }.count } 1. array 요소들을 String으로 변환 2. 변환된 String을 하나의 String으로 합침 (joined) 3. String으로 변환된 결과값들 중 "7"이 들어간요소들의 갯수만 걸러냄 (filter) 다른사람의 풀이 import Foundation func solution(_ array:[Int]) -> Int {..
https://school.programmers.co.kr/learn/courses/30/lessons/120895 문제 사진 내 풀이 import Foundation func solution(_ my_string:String, _ num1:Int, _ num2:Int) -> String { var resultString: [Character] = Array(my_string) var tempArr: [Character] = [] tempArr.append(Array(my_string)[num1]) tempArr.append(Array(my_string)[num2]) resultString[num1] = tempArr.popLast()! resultString[num2] = tempArr.popLast(..
- Total
- Today
- Yesterday
- Swift 프로퍼티
- Class
- 원티드 프리온보딩
- Swift RIBs
- Swift joined()
- Swift 프로그래머스
- CS 네트워크
- RIBs tutorial
- Swift ModernRIBs
- swift (programmers)
- Combine: Asynchronous Programming with Swift
- Swift Error Handling
- swift protocol
- ios
- Swift init
- swift reduce
- Swift joined
- Swift 내림차순
- Swift 알고리즘
- 2023년 회고
- RTCCameraVideoCapturer
- iOS error
- Swift inout
- Swift Leetcode
- Swift final
- swift programmers
- removeLast()
- swift property
- swift 고차함수
- Swift
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |