250x250
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
- the midnight library
- 원서읽기
- 쉬운 알고리즘 문제
- 코테
- PyQt
- 원서읽자
- dfs
- BFS
- 원서
- 코테 대비
- D4
- sw expert
- nightroutine
- MySQL
- 코테 준비
- SQL
- 프로그래머스
- 알고리즘 문제
- swexpertacademy
- English
- 코딩테스트
- 알고리즘
- STUDYENGLISH
- 직무면접
- 삼성
- englishbook
- 완전탐색
- 백준
- sw expert academy
- readingbook
Archives
- Today
- Total
목록방향전환 (1)
시나브로
[D4] 8382. 방향 전환
#include int start_x = 0; int start_y = 0; int end_x = 0; int end_y = 0; int virtual_reality(int signal,int amount,int x, int y) { if (x == end_x&&end_y == y) return amount; if (signal == 0) { if (x > end_x) return virtual_reality(1, amount + 1, x - 1, y); else return virtual_reality(1, amount + 1, x + 1, y); } else { if (y > end_y) return virtual_reality(0, amount + 1, x, y-1); else return virt..
알고리즘/SW Expert Academy
2019. 10. 6. 11:13