일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- notFound()
- React18
- react
- background tab
- react-helmet
- getUTCDate
- React 고급 안내서
- Nextjs
- React API 참고서
- Render Props
- React 공식문서
- Nextjs React 18
- hook
- CSS
- Babel
- React 18
- Javascript
- next13 head
- RTK Query
- background setttimeout
- Next13
- background setInterval
- codingtest
- background: url
- context
- 고급안내서
- Programmers
- react hook
- React 18 Nextjs
- React 고급안내서
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