https://school.programmers.co.kr/learn/courses/30/lessons/120803
풀이
더보기
이것도.. 그냥 받은 매개변수를 빼고, 그걸 리턴하면 됩니다..
class Solution {
fun solution(num1: Int, num2: Int): Int {
return num1 - num2
}
}
반응형
'스터디(programmers)' 카테고리의 다른 글
Kotlin] 프로그래머스 lv.0, 숫자 비교하기 (0) | 2023.06.22 |
---|---|
Kotlin] 프로그래머스 lv.0, 몫 구하기 (0) | 2023.06.21 |
Kotlin] 프로그래머스 lv.0, 두 수의 곱 (0) | 2023.06.21 |
Kotlin] 프로그래머스 lv.0, 공배수 (0) | 2023.06.20 |
Kotlin] 프로그래머스 lv.0, n의 배수 (0) | 2023.06.19 |