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
- React.js
- JS console
- 성능최적화
- 티스토리꾸미기
- 반복줄이기
- 타입스크립트
- 공통컴포넌트
- react
- const 단언문
- click and drag
- 개발콘텐츠
- 타입좁히기
- reactjs
- 커스텀
- javascript
- typescript
- TSDoc
- 제네릭
- utilty type
- NonNullable
- vue.js
- 레이아웃쪼개기
- returnType
- 폰트적용하기
- 누구나 자료구조와 알고리즘
- Chart.js
- React Native
- 2022
- CSS
- 리액트
Archives
- Today
- Total
몽땅뚝딱 개발자
[프로그래머스 | Javascript] Lv.1 달리기 경주 본문
1. indexOf로 배열자체의 위치를 바꿨다가 시간초과되고... (‼️)
2. Map으로 풀었다.
function solution(players, callings) {
const playerIndexes = {};
players.forEach((player, index) => {
playerIndexes[player] = index;
});
callings.forEach(name => {
const currentPlayerPosition = playerIndexes[name];
const prevPlayer = players[currentPlayerPosition - 1];
players[currentPlayerPosition] = prevPlayer;
players[currentPlayerPosition - 1] = name;
playerIndexes[name] = currentPlayerPosition - 1;
playerIndexes[prevPlayer] = currentPlayerPosition;
});
return players;
}
'Development > 알고리즘' 카테고리의 다른 글
[프로그래머스 | Javascript] Lv.2 기능개발 (0) | 2024.12.28 |
---|---|
[프로그래머스 | Javascript] Lv.2 캐시 (0) | 2024.12.08 |
[프로그래머스 | Javascript] Lv.1 키패드 누르기 (1) | 2024.12.02 |
[프로그래머스 | Javascript] Lv.1 동영상 재생기 (1) | 2024.12.02 |
[프로그래머스 | Javascript] Lv.1 기사단원의 무기 (0) | 2024.11.25 |
Comments