https://school.programmers.co.kr/learn/courses/30/lessons/181938
풀이
더보기
https://itstudy-mary.tistory.com/547
이거랑 비슷한 문제.
문자열을 합해서 숫자로 만드는건 같습니다.. 그냥 문자열 합해서 숫자로 만들고(위 링크 참조), 나머지는 연산해서 Math.max(a, b)를 이용해서 리턴하면 됩니다.
class Solution {
fun solution(a: Int, b: Int): Int {
var plus = "$a$b".toInt()
var multi = a * b * 2
return Math.max(plus, multi)
}
}
반응형
'스터디(programmers)' 카테고리의 다른 글
Kotlin] 프로그래머스 lv.0, 공배수 (0) | 2023.06.20 |
---|---|
Kotlin] 프로그래머스 lv.0, n의 배수 (0) | 2023.06.19 |
Kotlin] 프로그래머스 lv.0, 더 크게 합치기 (0) | 2023.06.15 |
Kotlin] 프로그래머스 lv.0, 문자열 곱하기 (0) | 2023.06.14 |
Kotlin] 프로그래머스 lv.0, 문자 리스트를 문자열로 변환하기 (0) | 2023.06.13 |