백준 - 숫자의 개수 (2577)

Seoyoung Lee·2023년 3월 18일
0

알고리즘

목록 보기
93/104
post-thumbnail
let A = Int(readLine()!)!
let B = Int(readLine()!)!
let C = Int(readLine()!)!
let result = String(A * B * C)

var numbers = Array(repeating: 0, count: 10)

result.forEach { numbers[Int(String($0))!] += 1 }
numbers.forEach { print($0) }
profile
나의 내일은 파래 🐳

0개의 댓글