https://school.programmers.co.kr/learn/courses/30/lessons/120804
풀이
더보기
이거 .. 굉장히 쉬운 문제입니다..
그냥 num1 * num2 해서 리턴하면 됩니다
class Solution {
fun solution(num1: Int, num2: Int): Int {
return num1 * num2
}
}
반응형
'스터디(programmers)' 카테고리의 다른 글
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 |
Kotlin] 프로그래머스 lv.0, 두 수의 연산값 비교하기 (0) | 2023.06.16 |