본문 바로가기
Chapter02/고딩데스드

[고딩데스드] 두 수의 연산값 비교하기

by EmmaDev_v 2023. 12. 26.

코딩테스트 연습 > 코딩 기초 트레이닝 > 두 수의 연산값 비교하기

두 수의 연산값 비교하기

문제 설명
연산 ⊕는 두 정수에 대한 연산으로 두 정수를 붙여서 쓴 값을 반환합니다. 예를 들면 다음과 같습니다.

12 ⊕ 3 = 123
3 ⊕ 12 = 312
양의 정수 a와 b가 주어졌을 때, a ⊕ b와 2 * a * b 중 더 큰 값을 return하는 solution 함수를 완성해 주세요.

단, a ⊕ b와 2 * a * b가 같으면 a ⊕ b를 return 합니다.

제한사항
1 ≤ a, b < 10,000
입출력 예
a b result
2 91 364
91 2 912

 

class Solution {
    
    public int solution(int a, int b) {

        String strA = String.valueOf(a);
        String strB = String.valueOf(b);

        int concatAB = Integer.parseInt(strA + strB);
        int doubleProduct = 2 * a * b;

        if (concatAB >= doubleProduct) {
            return concatAB;
        } else {
            return doubleProduct;
        }
    }
}

 

 

 

 

다른 사람의 풀이

 

class Solution {
    public int solution(int a, int b) {
        return Math.max(Integer.parseInt(String.valueOf(a)+String.valueOf(b)),2*a*b);
    }
}

 

내가 이렇게 했을땐 안된대매 ㅋ.. ㅎ 

반응형