본문 바로가기

프로그래머스/구현

[문자열] 프로그래머스 '튜플' - js

반응형

1. 문제

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

 

프로그래머스

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

programmers.co.kr

2. 코드

이 문제는 조건을 꼼꼼하게 읽고 주어진 테케를 적극적으로 활용하면 그렇게 어렵지는 않은 문제다. 

function solution(s) {
    let answer = [], newS = [], i= 2, tempS = "", temp = [];
  	
    // 문자열 s 배열 형태로 바꿔주기
    while(i < s.length-1){ 
      if(!isNaN(s[i])) tempS += s[i];
      if(s[i] === "," && s[i+1] !== "{"){
        temp.push(+tempS);
        tempS = "";
      }
      if(s[i] === "}"){
        temp.push(+tempS);
        newS.push(temp);
        temp = [];
        tempS = "";
      }
      i++;
    }
  
    // 길이 순으로 정렬
    newS.sort((a,b) => a.length - b.length);
  	
    for(let i=0;i<newS.length;i++){
          for(let j=0;j<newS[i].length;j++){
            if(!answer.includes(newS[i][j])) answer.push(newS[i][j]);
          }
    }
    
    return answer;
}
반응형