2022년 8월 16일 종이책 초판 1쇄
p24 13째 줄
https://rnxinyminutes.com/docs/python/에 있는 '몇 분만에 익히는 파이썬
→
https://learnxinyminutes.com/docs/python에 있는 '몇 분 만에 익히는 파이썬
p313 11째 줄 코드부 오류
elif needle > haystack[mid]:
→
elif needle > haystack[midIndex]:
p367 3째 줄 코드부 오류
return 0 < int(space) < 10 and (space in ALL_SPACES or board[space] == BLANK)
→
return 0 < int(space) < 10 and (space in ALL_SPACES and board[space] == BLANK)
p370 21째 줄 코드부 오류
return 0 < int(space) < 10 and (space in ALL_SPACES or board[space] == BLANK)
→
return space in ALL_SPACES and self._spaces[space] == BLANK
'+ 도서 오류 정보' 카테고리의 다른 글
[정오표] 필독! 개발자 온보딩 가이드 (0) | 2023.06.26 |
---|---|
[정오표] 게임 시스템 디자인 입문 (0) | 2023.04.24 |
[정오표] 제품의 탄생 (0) | 2022.12.12 |
[정오표] 엔터프라이즈 데이터 플랫폼 구축 (0) | 2022.08.08 |
[정오표] 자동차 인터페이스 디자인 (0) | 2022.06.20 |
댓글