chapter 13 dfs/bfs 문제 Q19 연산자 끼워 넣기 답안 수정이 필요합니다 (page 538).
anywheredoor opened this issue · 1 comments
anywheredoor commented
min_value = 1e9
max_value = -1e9
에서
min_value = int(1e9)
max_value = int(-1e9)
로 수정해야 정답 판정을 받을 수 있습니다.
hanjun0126 commented
왜 그런지 알 수 있나요?