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
- 구름톤 챌린지 회고
- 백준 2108 nodejs
- 옵셔널체이닝
- 구름톤 챌린지
- 스코프
- 백준 1339번 자바스크립트
- app router emotion
- next13 emotion
- js 문자열 압축
- 리액트쿼리 suspense
- 구름톤
- 사용성 개선
- suspense 비동기
- 백준 2108 자바스크립트
- 백준 1339번 nodejs
- 프로그래머스 문자열 압축
- 프로그래머스 거리두기 확인하기
- emtion app router
- emotion RSC
- 자바스크립트 문자열 압축
- js 스코프
- js 거리두기 확인하기
- 자바스크립트 스코프
- suspense 병목현상
- 카카오 코테
- suspense react-query
- 백준 1339번 js
- js
- suspense 동작원리
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
Archives
- Today
- Total
목록다리를 지나는 트럭 js (1)
Lennon FE
[프로그래머스] 다리를 지나는 트럭 (js)
https://programmers.co.kr/learn/courses/30/lessons/42583?language=javascript 코딩테스트 연습 - 다리를 지나는 트럭 트럭 여러 대가 강을 가로지르는 일차선 다리를 정해진 순으로 건너려 합니다. 모든 트럭이 다리를 건너려면 최소 몇 초가 걸리는지 알아내야 합니다. 다리에는 트럭이 최대 bridge_length대 올라갈 programmers.co.kr function solution(bridge_length, weight, truck_weights) { truck_weights = truck_weights.map((v) => [v, 0]); const passingTruck = []; const passedTruck = []; const len =..
🔥 Algorithm/Programmers
2022. 2. 10. 12:33