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
- Chart.js
- React Native
- 타입스크립트
- 제네릭
- 누구나 자료구조와 알고리즘
- TSDoc
- 성능최적화
- 2022
- 커스텀
- 개발콘텐츠
- vue.js
- CSS
- utilty type
- 레이아웃쪼개기
- reactjs
- 폰트적용하기
- javascript
- react
- React.js
- 티스토리꾸미기
- 리액트
- 타입좁히기
- typescript
- const 단언문
- click and drag
- 공통컴포넌트
- returnType
- 반복줄이기
- NonNullable
- JS console
Archives
- Today
- Total
목록2024/12/08 (2)
몽땅뚝딱 개발자
[프로그래머스 | Javascript] Lv.2 캐시
function solution(cacheSize, cities) { const HIT = 1, MISS = 5 const cache = [] let totalTime = 0 if (cacheSize === 0) return MISS * cities.length for (let i = 0; i = cacheSize) { cache.shift() } } cache.push(searchTarget) } return totalTime}
Development/알고리즘
2024. 12. 8. 14:35
[프로그래머스 | 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] = ..
Development/알고리즘
2024. 12. 8. 13:20