일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Babel
- CSS
- codingtest
- Javascript
- hook
- notFound()
- React 고급 안내서
- background tab
- react
- React 공식문서
- Programmers
- react-helmet
- background: url
- React 18
- getUTCDate
- React18
- background setttimeout
- React 18 Nextjs
- background setInterval
- Nextjs
- RTK Query
- Render Props
- context
- 고급안내서
- Next13
- next13 head
- React API 참고서
- React 고급안내서
- Nextjs React 18
- react hook
Archives
- Today
- Total
목록42583 (1)
akjfal
프로그래머스 42583번 java
Programmers 코딩테스트 level 2 - 42583번 다리를 지나는 트럭 java로 작성했습니다. 생각한 점 1. 다리에 현재 올라와있는 queue와 트럭이 대기중인 queue사용 2. 틱마다 다리에 트럭이 올라갈수있는지 없는지 체크해 대기중인 queue의 길이만큼 for문을 돌림 static public int solution(int bridge_length, int weight, int[] truck_weights) { int answer = 0; int line_weight = 0; int length = truck_weights.length; Integer[] tmp_bridge = new Integer[bridge_length]; Arrays.fill(tmp_bridge, 0); // ..
알고리즘/programmers
2021. 1. 15. 01:33