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 |
Tags
- 리액트
- axios
- Python
- 항해플러스
- java
- 프로그래머스
- 자바
- redux-saga
- createSlice
- 매일메일
- 항해99
- sw expert academy
- Get
- JavaScript
- 이코테
- redux-toolkit
- react-redux
- C++
- 코딩테스트합격자되기
- Algorithm
- react-router
- programmers
- maeil-mail
- 테코테코
- redux
- react
- json-server
- SW
- 알고리즘
- useDispatch
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
반응형