Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 사용성 개선
- 백준 1339번 js
- 구름톤 챌린지 회고
- suspense 비동기
- emotion RSC
- 구름톤
- 백준 1339번 자바스크립트
- 옵셔널체이닝
- 리액트쿼리 suspense
- app router emotion
- 백준 2108 자바스크립트
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- 스코프
- suspense react-query
- 프로그래머스 문자열 압축
- 백준 1339번 nodejs
- suspense 병목현상
- emtion app router
- js
- js 스코프
- suspense 동작원리
- 구름톤 챌린지
- next13 emotion
- 자바스크립트 문자열 압축
- 카카오 코테
- js 거리두기 확인하기
- 프로그래머스 거리두기 확인하기
- 백준 2108 nodejs
- 자바스크립트 스코프
- js 문자열 압축
Archives
- Today
- Total
Lennon FE
[프로그래머스] 스킬트리 (js) 본문
728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/49993?language=javascript
function solution(skill, skill_trees) {
const answer =skill_trees.map(v => {
let str = '';
const value = v.split("").filter(v1 => {
if(skill.includes(v1)){
str+=v1;
}
})
return str;
})
const result = possibleSkillTree(skill)
return answer.filter((v) => {
if(v === ''){
return 'good';
}
if(result.includes(v)){
return v;
}
}).length;
}
function possibleSkillTree(str){
const result = [];
for(let i = str.length; i > 0; i--){
let string = '';
for(let j = 0; j < i; j++){
string+=str[j];
}
result.push(string);
}
return result;
}
possibleSkillTree 함수 => 입력으로 주어진 스킬의 가능한 모든 순서를 얻는 함수
ex) CBD -> C, CB, BD, CBD
이제 solution함수에서 입력된 배열의 모든 행들이 저 순서대로 되어있는 지 검증하면 된다.
728x90
반응형
'🔥 Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스 Lv.2] 프린터 (js) (0) | 2021.11.10 |
---|---|
[프로그래머스] 방문 길이 (js) (0) | 2021.11.08 |
[프로그래머스] 신규 아이디 추천 (js) (0) | 2021.11.05 |
[프로그래머스] 괄호 변환 (js) (0) | 2021.11.04 |
[프로그래머스] 문자열 압축 (js) (0) | 2021.11.03 |
Comments