본문 바로가기
JAVA/프로그래머스

[프로그래머스/자바] 다항식 더하기

by 동백05 2023. 9. 1.

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

 

프로그래머스

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

programmers.co.kr

class Solution {
    public String solution(String polynomial) {
        String answer = "";
        String[] seperate = polynomial.split(" ");
        int count = 0;
        int num = 0;
        for(int i=0;i<seperate.length;i++){
            if(seperate[i].equals(" ") || seperate[i].equals("+")){
                continue;
            }else if(seperate[i].contains("x")){
                if(seperate[i].length()==1){
                    count++;
                }else{
                    count+= Integer.parseInt(seperate[i].substring(0,seperate[i].length()-1));
                }
            }else{
                num+=Integer.parseInt(seperate[i]);
            }
        }
   
        if(count == 0 && num == 0){
            answer = "";
        }else if(count == 0 && num != 0){
            answer =String.valueOf(num);
        }else if(count == 1 && num == 0){
            answer = "x";
        }else if(count == 1 && num != 0){
            answer = "x + "+String.valueOf(num);
        }else if(count > 1 && num == 0){
            answer = String.valueOf(count)+"x";
        }else{
            answer = String.valueOf(count)+"x + "+String.valueOf(num);
        }
        
        return answer;
    }
}

출력의 경우의수를 잘 생각해줘야한다.

댓글