백준 - 숫자의 합 (11720)

Seoyoung Lee·2023년 1월 12일
0

알고리즘

목록 보기
2/104
post-thumbnail
import Foundation

let count = Int(readLine()!)!
let input = readLine()!

print(input.reduce(0){ Int(String($0))! + Int(String($1))! })
profile
나의 내일은 파래 🐳

0개의 댓글