반응형
https://school.programmers.co.kr/learn/courses/30/lessons/120909
import kotlin.math.*
class Solution {
fun solution(n: Int): Int {
var answer: Int = 0
val a = sqrt(n.toDouble())
// 정수 판별
if(a % 1 == 0.0){
answer = 1
} else {
answer = 2
}
return answer
}
}
import kotlin.math.*
반응형
'IT > 알고리즘' 카테고리의 다른 글
71] Leetcode 2469. Convert the Temperature (0) | 2023.04.04 |
---|---|
70] Leetcode 1929. Concatenation of Array (0) | 2023.04.03 |
68] 프로그래머스 세균 증식 Kotlin (0) | 2023.03.20 |
67] kotlin 프로그래머스/ 행렬의 덧셈 (0) | 2021.09.29 |
66] Kotlin 프로그래머스 / x만큼 간격이 있는 n개의 숫자 (0) | 2021.09.28 |
댓글