jetbrains-academy / Python-Libraries-NumPy

MIT License
1 stars 3 forks source link

wrong shape Array Basics / Create Empty Array #42

Closed edutools-service closed 2 years ago

edutools-service commented 2 years ago

Hi there, I believe that the learning material about the shape of np.zeros() is wrong and it happens again in the task when the shape should be a = np.ones((x, y), dtype=np.int64) b = np.full((x, y), fill_value=True) but not a = np.ones((y,x), dtype=np.int64) b = np.full((y,x), fill_value=True)