티스토리 뷰
728x90
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 {
return array.map{String($0)}.joined().filter{$0 == "7"}.count
}
joined() 이렇게만으로도 사용할 수 있었다..
배운것
[Int]에 있는 요소들을 다 합칠때
map(String으로 변환) + joined
알고리즘 풀면서 자주쓸것 같다.
예제
// [7, 77, 17] -> "77717"
var array: [Int] = [7, 77, 17]
print(array.map { String($0) }.joined(separator: ""))
// 77717
728x90
'알고리즘' 카테고리의 다른 글
[Swift 알고리즘] - Contains Duplicate (LeetCode) (0) | 2023.08.08 |
---|---|
[Swift 알고리즘] - 영어가 싫어요 (Programmers) (0) | 2022.12.13 |
[Swift 알고리즘] - 암호해독 (Programmers) (0) | 2022.11.17 |
[Swift 알고리즘] - k의 갯수 (Programmers) (0) | 2022.11.16 |
[Swift 알고리즘] - A로 B만들기 (Programmers) (0) | 2022.11.10 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- swift property
- Swift Error Handling
- Swift 프로그래머스
- Swift Leetcode
- 원티드 프리온보딩
- removeLast()
- swift 고차함수
- Swift final
- swift reduce
- Swift joined()
- Swift 프로퍼티
- ios
- Swift inout
- Swift
- swift programmers
- RTCCameraVideoCapturer
- Swift ModernRIBs
- iOS error
- Swift 알고리즘
- Swift RIBs
- RIBs tutorial
- swift (programmers)
- Swift joined
- CS 네트워크
- Swift init
- Swift 내림차순
- Combine: Asynchronous Programming with Swift
- Class
- swift protocol
- 2023년 회고
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함