数値桁数の追加
3889 ワード
reduce:
reduce : http://minsone.github.io/mac/ios/swift-map-filter-reduce-and-inference
func solution(_ n:Int) -> Int
{
var answer = 0
for i in String(n) {
answer += Int(String(i))!
}
return answer
}
func reduce<U>(initial: U, combine: (U, T) -> U) -> U // reduce정의
func solution(_ n:Int) -> Int
{
return String(n).reduce(0, { $0 + Int(String($1))!})
}
質問元:https://programmers.co.kr/learn/courses/30/lessons/12931?language=swiftreduce : http://minsone.github.io/mac/ios/swift-map-filter-reduce-and-inference
Reference
この問題について(数値桁数の追加), 我々は、より多くの情報をここで見つけました https://velog.io/@quokka/1단계-자릿수-더하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol