반응형
class Solution {
fun solution(angle: Int): Int {
var ans: Int = 0
when(angle) {
in 1.. 89 -> ans = 1
90 -> ans = 2
in 91 .. 179 -> ans = 3// return 3
180 -> ans =4 //return 4
}
return ans;
}
}
until vs ..
class Solution {
fun solution(angle: Int): Int =
when(angle){
in 1 until 90 -> 1
90 -> 2
in 91 until 180 -> 3
180 -> 4
else -> 5
}
}
https://codetravel.tistory.com/24
until이면 마지막 불포함
..이면 마지막 포함
반응형
'IT > 알고리즘' 카테고리의 다른 글
85 프로그래머스] 최댓값 만들기(1) kotlin (0) | 2023.10.14 |
---|---|
83 프로그래머스] 배열뒤집기 kotlin (0) | 2023.10.11 |
81 프로그머스] Kotlin 대소문자 바꿔서 출력하기 (0) | 2023.10.08 |
80] 프로그래머스 문자열 반복해서 출력하기 (0) | 2023.10.08 |
79] 프로그래머스 a와 b 출력하기 kotlin (0) | 2023.10.05 |
댓글