일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- background tab
- background setInterval
- context
- React18
- Nextjs
- hook
- Programmers
- React 고급안내서
- notFound()
- Javascript
- Nextjs React 18
- RTK Query
- background: url
- getUTCDate
- codingtest
- background setttimeout
- Babel
- React 고급 안내서
- react
- React API 참고서
- React 18
- React 18 Nextjs
- next13 head
- React 공식문서
- CSS
- Next13
- react-helmet
- 고급안내서
- react hook
- Render Props
Archives
- Today
- Total
목록방문 길이 (1)
akjfal
[Programmers] 방문 길이
// 좌표평면 길이는 고정 // 좌표평면을 벗어나는 것은 무시 // 처음 가는 길을 구한다. // hashmap에 a -> b 이동 좌표를 적는다. // b -> a도 같이 넣는다. // map.size를 구한다. import java.util.HashMap; class Solution { public int solution(String dirs) { int answer = 0; int startY = 0, startX = 0; HashMap map = new HashMap(); for(String m : dirs.split("")){ int arriveY = moveY(startY, m); int arriveX = moveX(startX, m); if(isMove(arriveY, arriveX)){ S..
알고리즘/programmers
2021. 6. 22. 13:14