We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
안녕하세요 책을 잘 보고 있습니다.
파스칼의 삼각형에 관한 직접적 문제는 아니지만, 책에 오타가 있는거 같아 이슈를 남깁니다.
pyramid = [] for i in range(5): column = [] while j >= 0: column.append(0) j -= 1 pyramid.append(column)
print(pyramid)
이렇게 되어있는데, i대신 j로 오타가 난듯 합니다!
감사합니다.
The text was updated successfully, but these errors were encountered:
책을 잘보고 계시다니 감사합니다.
관련 오타는 https://github.com/daeseokyoun/learn-algorithm-by-writing/blob/main/Array/1_8_pascals_triangle/README.md 에 오타수정 부분에 내용을 참고 하시면 될 것 같습니다.
Sorry, something went wrong.
daeseokyoun
No branches or pull requests
안녕하세요 책을 잘 보고 있습니다.
파스칼의 삼각형에 관한 직접적 문제는 아니지만, 책에 오타가 있는거 같아 이슈를 남깁니다.
pyramid = []
for i in range(5):
column = []
while j >= 0:
column.append(0)
j -= 1
pyramid.append(column)
print(pyramid)
이렇게 되어있는데, i대신 j로 오타가 난듯 합니다!
감사합니다.
The text was updated successfully, but these errors were encountered: