You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
Artur-Arstamyan
changed the title
Exercise N62 - There is unnecessary code
Exercise N62 - There is an unnecessary code
Sep 28, 2024
Artur-Arstamyan
changed the title
Exercise N62 - There is an unnecessary code
Exercise N62 - There is an unnecessary code, Exercise N80 - IndexError
Sep 28, 2024
Exercise 62 - Considering two arrays with shape (1,3) and (3,1), how to compute their sum using an iterator?
Code
Unnecessary part
After
it = np.nditer([a,b,None])
it.operands[2]
already has that value.Exercise N80
Current code that gives error
Output
Solution - Use tuples
The text was updated successfully, but these errors were encountered: