티스토리 뷰
728x90
https://school.programmers.co.kr/learn/courses/30/lessons/12931
문제 사진
내 풀이
func solution(_ n:Int) -> Int
{
return String(n).map { Int(String($0))! }.reduce(0) { $0 + $1 }
}
solution(340)
처음엔 파라미터로 들어오는 n을 String 변환 후 split(separate: "") 로 진행했으나,
character로 되는점에서 그냥 map 을 사용한 후 Int(String($0))으로 풀어내는게 더 직관적이라 생각해서 바꿨다.
다른사람의 풀이
import Foundation
func solution(_ n:Int) -> Int
{
return String(n).reduce(0, {$0+Int(String($1))!});
}
728x90
'알고리즘' 카테고리의 다른 글
[Swift 알고리즘] - 문자열 다루기 기본(Programmers) (0) | 2022.10.13 |
---|---|
[Swift 알고리즘] - 2016년 (Programmers) (0) | 2022.10.12 |
[Swift 알고리즘] - 내적 (Programmers) (0) | 2022.10.10 |
[Swift 알고리즘] - 문자열을 정수로 바꾸기 (Programmers) (0) | 2022.10.04 |
[Swift 알고리즘] - 알수없는 숫자 더하기 (Programmers) (1) | 2022.10.01 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- iOS error
- Combine: Asynchronous Programming with Swift
- Swift 프로그래머스
- swift reduce
- 원티드 프리온보딩
- swift (programmers)
- removeLast()
- Swift 알고리즘
- ios
- Swift inout
- swift programmers
- RIBs tutorial
- CS 네트워크
- Swift ModernRIBs
- Class
- RTCCameraVideoCapturer
- Swift joined()
- Swift 내림차순
- Swift RIBs
- swift protocol
- Swift 프로퍼티
- Swift joined
- Swift
- Swift final
- Swift Leetcode
- swift property
- 2023년 회고
- Swift init
- swift 고차함수
- Swift Error Handling
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함