728x90
옷가게 할인 받기
class Solution {
fun solution(price: Int) =
if(price >= 500000) (price * 0.8).toInt()
else if (price >= 300000) (price * 0.9).toInt()
else if (price >= 100000) (price * 0.95).toInt()
else price
}
아이스 아메리카노
class Solution {
fun solution(money: Int) = intArrayOf(money / 5500, money % 5500)
}
나이 출력
class Solution {
fun solution(age: Int) = 2022 - age + 1
}
배열 뒤집기
class Solution {
fun solution(num_list: IntArray) = num_list.reversed()
}
728x90