PEACHCONG

[프로그래머스] 더 크게 합치기 / 자바(Java) 본문

프로그래머스/코딩 기초 트레이닝

[프로그래머스] 더 크게 합치기 / 자바(Java)

피치콩 2023. 12. 31. 23:54
문제
💻 프로그래머스 - 더 크게 합치기 (Lv.0)

https://school.programmers.co.kr/learn/courses/30/lessons/181939

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

 

풀이 (1)
💡 정수 + "" 를 이용하여 String으로 만든 후 다시 parseInt
💡 if문을 사용하여 결과 값을 return
class Solution {
    public int solution(int a, int b) {
        int result1 = Integer.parseInt("" + a + b);
        int result2 = Integer.parseInt("" + b + a);

        if(result1 > result2 || result1 == result2) {
            return result1;
        } else {
            return result2;
        }
    }
}

 

 

풀이 (2)
💡 정수 + "" 를 이용하여 String으로 만든 후 다시 parseInt
💡 삼항연산자를 사용하여 결과 값을 return
class Solution {
    public int solution(int a, int b) {
        int result1 = Integer.parseInt("" + a + b);
        int result2 = Integer.parseInt("" + b + a);
        
        return result1 >= result2 ? result1 : result2;
    }
}

 


 

간단한 조건식으로 풀 수 있는 문제니까

삼항연산자를 이용하여 작성하는 것이 더 깔끔해보인다!