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
- c++
- 알고리즘 문제풀이
- 우박수열정적분
- [pccp 기출문제]
- 알고리즘문제풀이
- 두원사이의정수쌍
- JS스터디
- 비트마스크
- 프로그래머스
- React.StrictMode
- 스택
- solved.ac골드
- Lv3
- 코어자바스크립트
- 최소스패닝트리
- DP
- 백준알고리즘
- 정렬
- 지도 여러개
- pccp기출문제
- div2개
- Lv2
- solved.ac플래티넘
- 5강클로저
- 과제진행하기
- 타겟넘버
- 2023카카오블라인드코테
- 백준 알고리즘
- JS
- 이중지도
Archives
- Today
- Total
호지
[프로그래머스] 달리기 경주 문제풀이 JS 본문
callings 전체를 탐색해서 순서를 바꿔주면 되는 문제이다.
indexOf로 해당 player의 위치를 찾으면 시간초과이므로,
처음 players의 위치를 position 객체에 저장해두면 시간초과가 나지 않는다.
function solution(players, callings) {
let position = {};
players.forEach((player, i) => {
position[player] = i;
});
callings.forEach((calling) => {
const index = position[calling]--;
const tempValue = players[index - 1];
players[index - 1] = players[index];
players[index] = tempValue;
position[tempValue] = index;
});
return players;
}
https://school.programmers.co.kr/learn/courses/30/lessons/178871?language=javascript
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 공원 산책 문제풀이 JS (0) | 2023.07.20 |
---|---|
[프로그래머스] 추억 점수 문제풀이 JS (0) | 2023.07.19 |
[프로그래머스] 미로 탈출 문제 풀이 c++ (0) | 2023.05.04 |
[프로그래머스] 혼자서 하는 틱택토 c++ (0) | 2023.05.04 |
[프로그래머스] 미로 탈출 명령어 c++ (0) | 2023.04.14 |
Comments