health-data-science-OR / coding-for-ml

Learning materials for Coding for Machine Learning and Data Science
https://www.pythonhealthdatascience.com
MIT License
15 stars 4 forks source link

Issue on page /content/01_algorithms/06_solutions/02_array.html #47

Closed TomMonks closed 2 years ago

TomMonks commented 2 years ago

Exercise 6

# example answer
first_column_slice = matrix_2d[1:4,0]
print(f'First column: {first_column}')

should be

# example answer
first_column_slice = matrix_2d[1:4,0]
print(f'First column: {first_column_slice}')
TomMonks commented 2 years ago

fixed in dev for 2.0.0