+ 도서 오류 정보
[정오표] 클린 코드, 이제는 파이썬이다
책만
2023. 2. 9. 10:11
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