본문 바로가기

코딩 테스트 연습/알고리즘

[ 코딩 테스트 ] 두 수의 곱

문제

조건

 

정답

class Solution {
    public int solution(int num1, int num2) {
        int answer = 0;
        answer = num1 * num2;
        return answer;
    }
}

메모리: 75.2 MB, 시간: 0.01 ms

class Solution {
    public int solution(int num1, int num2) {
        return num1 * num2;
    }
}

메모리: 79.1 MB, 시간: 0.02 ms

 


 

후기

 

저번 문제처럼 똑같이 해봤는데

메모리도 늘어나고 시간도 늘어났다

 

뭘까? 🤔