[프로그래머스] 최댓값과 최솟값(Kotlin)

0

프로그래머스

목록 보기
113/128
post-thumbnail

[프로그래머스] 최댓값과 최솟값(Kotlin)

풀이

import kotlin.math.*

class Solution {
    fun solution(s: String): String {
        
        val sList = s.split(' ').map{it.toInt()}
        var min = sList[0]
        var max = sList[0]
        sList.forEach{
            if(it < min) min = it
            if(it > max) max = it
        }
    
        var answer = min.toString() + " " + max.toString()
        return answer
    }
}
profile
Be able to be vulnerable, in search of truth

0개의 댓글