if (knitr:::is_latex_output()) {
::asis_output('\\url{....}')
knitrelse {
} ::include_graphics("fig/Maze.gif")
knitr }
7 미로 탈출
- 문제 바로가기
- 선행 지식
- 기본 함수 :
move()
,turn_left()
- 테스트 조건:
front_is_clear()
,wall_in_front()
,right_is_clear()
,wall_on_right()
,at_goal()
- 반복
while
루프,if
/elif
/else
조건 문
- 기본 함수 :
- 난이도: 4
7.0.1 실행결과
7.0.2 코드
def turn_right():
turn_left()
turn_left()
turn_left()
while not at_goal():
if right_is_clear():
turn_right()
move()elif front_is_clear():
move()else:
turn_left()