jetbrains-academy / Python-Libraries-NumPy

MIT License
1 stars 3 forks source link

Task Misleading Array Indexing and Slicing / Indexing Basics #57

Closed edutools-service closed 1 year ago

edutools-service commented 1 year ago

The task asks for EVERY SECOND ELEMENT in EVERY SECOND ROW but the "correct" answer prints out the first and third element from every row, and rows 0, 2, 4, 6 and 8 when the actual second elements are indexes 1 and 3, and the actual second rows are array[1::2]. N/A

sofiiako commented 1 year ago

Hi! Thank you for pointing this out. The issue was already addressed in this pull request: https://github.com/jetbrains-academy/Python-Libraries-NumPy/pull/54. I have now updated the course on the platform.