반응형
양의 정수 n이 주어질때,
2와 n의 최소공배수를 return하는 문제
class Solution {
fun smallestEvenMultiple(n: Int): Int {
if(n % 2 == 0){
return n
} else {
return n*2
}
}
}
반응형
'IT > 알고리즘' 카테고리의 다른 글
77] Leetcode 1979. Find Greatest Common Divisor of Array #Kotlin (0) | 2023.04.12 |
---|---|
76] ★ Leetcode 1071. Greatest Common Divisor of Strings Kotlin (0) | 2023.04.11 |
74] Leetcode 2574. Left and Right Sum Differences Kotlin (0) | 2023.04.06 |
73] Leetcode 2011. Final Value of Variable After Performing OperationsEasy1.1K151 #Kotlin (0) | 2023.04.05 |
71] Leetcode 2469. Convert the Temperature (0) | 2023.04.04 |
댓글