[프로그래머스] 가장 큰 수 Swift

AekT·2021년 10월 30일
0

프로그래머스

목록 보기
3/6
post-thumbnail
post-custom-banner

프로그래머스 - 가장 큰 수

문제 : https://programmers.co.kr/learn/courses/30/lessons/42746

Swift :

func solution(_ numbers:[Int]) -> String {
    let arr  = numbers.sorted { o1, o2 in
        Int("\(o1)"+"\(o2)")! > Int("\(o2)"+"\(o1)")!
    }
    if arr[0] == 0{ return "0" }
    return arr.reduce("") {"\($0)\($1)"}
}
profile
으악

0개의 댓글