티스토리 뷰
728x90
https://school.programmers.co.kr/learn/courses/30/lessons/120892
문제 사진
내 풀이
import Foundation
func solution(_ cipher:String, _ code:Int) -> String {
return (1...cipher.count)
// 1
.filter { $0.isMultiple(of: code) }
// 2
.map { String(Array(cipher)[$0 - 1]) }
// 3
.joined(separator: "")
}
solution("pfqallllabwaoclk", 2)
1. isMultiple(of:) 메서드로 매개변수 code 만큼의 배수들만 걸러냅니다.
print [2, 4, 6, 8, 10, 12, 14, 16]
2. 걸러낸 배열의 숫자들로 cipher[index]로 접근합니다.
print ["f", "a", "l", "l", "b", "a", "c", "k"]
3. joined(separator:) 메서드로 하나의 문자열로 합쳐줍니다.
print "fallback"
728x90
'알고리즘' 카테고리의 다른 글
[Swift 알고리즘] - 영어가 싫어요 (Programmers) (0) | 2022.12.13 |
---|---|
[Swift 알고리즘] - 7의 개수 (Programmers) (0) | 2022.11.23 |
[Swift 알고리즘] - k의 갯수 (Programmers) (0) | 2022.11.16 |
[Swift 알고리즘] - A로 B만들기 (Programmers) (0) | 2022.11.10 |
[Swift 알고리즘] - 제일 작은 수 제거하기 (Programmers) (0) | 2022.11.07 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- swift programmers
- swift reduce
- RTCCameraVideoCapturer
- Swift 알고리즘
- swift (programmers)
- Swift 내림차순
- Class
- Swift Leetcode
- removeLast()
- swift property
- iOS error
- Swift RIBs
- Swift 프로그래머스
- Swift 프로퍼티
- RIBs tutorial
- Swift
- Swift init
- swift 고차함수
- ios
- Swift inout
- 원티드 프리온보딩
- CS 네트워크
- Swift joined
- Swift Error Handling
- Swift final
- 2023년 회고
- swift protocol
- Swift ModernRIBs
- Combine: Asynchronous Programming with Swift
- Swift joined()
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함