Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

80페이지 오타가 있는거 같습니다. #7

Open
diligejy opened this issue Jun 26, 2021 · 1 comment
Open

80페이지 오타가 있는거 같습니다. #7

diligejy opened this issue Jun 26, 2021 · 1 comment
Assignees

Comments

@diligejy
Copy link

안녕하세요 책을 잘 보고 있습니다.

파스칼의 삼각형에 관한 직접적 문제는 아니지만, 책에 오타가 있는거 같아 이슈를 남깁니다.

pyramid = []
for i in range(5):
column = []
while j >= 0:
column.append(0)
j -= 1
pyramid.append(column)

print(pyramid)

이렇게 되어있는데, i대신 j로 오타가 난듯 합니다!

감사합니다.

@daeseokyoun
Copy link
Owner

책을 잘보고 계시다니 감사합니다.

관련 오타는 https://github.com/daeseokyoun/learn-algorithm-by-writing/blob/main/Array/1_8_pascals_triangle/README.md 에 오타수정 부분에 내용을 참고 하시면 될 것 같습니다.

@daeseokyoun daeseokyoun self-assigned this Jun 27, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants