더 크게 합치기 Lv. 0

박영준·2023년 5월 31일
0

코딩테스트

목록 보기
178/300
class Solution {
    public int solution(int a, int b) {
        int answer = 0;
        return answer;
    }
}


해결법

방법 1

class Solution {
    public int solution(int a, int b) {       
        
        // int -> string -> 더하기 -> int(Integer.parseInt()) -> 비교
        
        String str1 = a + "";
        String str2 = b + "";
        
        int sum1 = Integer.parseInt(str1 + str2);
        int sum2 = Integer.parseInt(str2 + str1);
        
        if (sum1 != sum2) {
            return Math.max(sum1, sum2);
        } else {
            return sum1;
        }
    }
}

더 크게 합치기 Lv. 0

profile
개발자로 거듭나기!

0개의 댓글