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
- 항해플러스
- createSlice
- redux
- 리액트
- C++
- sw expert academy
- 자바
- axios
- 프로그래머스
- maeil-mail
- 매일메일
- redux-toolkit
- Python
- react
- react-router
- Get
- JavaScript
- json-server
- 이코테
- programmers
- react-redux
- 알고리즘
- 항해99
- Algorithm
- java
- useDispatch
- 코딩테스트합격자되기
- redux-saga
- 테코테코
- SW
Archives
- Today
- Total
Binary Journey
[프로그래머스] 방의 개수 (업데이트 중) 본문
반응형
프로그래머스_방의개수_49190
문제 링크 조건 (0,0)에서 시작, 8방으로 이동 가능 arrows : 이동 방향을 담은 배열 (길이 1 ~ 100,000 | 범위 0 ~ 7) 방은 다른 방으로 둘러 싸여질 수 있음 접근 방법 최대 10만번 이동이 가능 => col, row 최
ziyuun.tistory.com
[프로그래머스 5] 방의 개수 (C/C++) (★★★)
#include #include #include #include using namespace std; int solution(vector arrows) { int roomCnt = 0; map , int> vertex_visited; map , pair >, int> edge_visite..
coding-insider.tistory.com
https://yabmoons.tistory.com/606
[ 프로그래머스 방의 개수 (Lv5) ] (C++)
프로그래머스의 방의 갯수(Lv5) 문제이다. [ 문제풀이 ] 주어진 방향대로 선을 그었을 때, 만들어 진 방의 갯수를 return 해야 하는 문제이다. 생각보다 문제가 단순해 보이지만, 보이지 않는 함정
yabmoons.tistory.com
반응형