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
Hello,
I was looking at the code and I can't understand why you modify the value and not the index of tmp_out in this line:
_out = tmp_out[s] - 1
Shouldn't be
_out = tmp_out[s - 1]
?
The text was updated successfully, but these errors were encountered:
Hello,
I was looking at the code and I can't understand why you modify the value and not the index of tmp_out in this line:
_out = tmp_out[s] - 1
Shouldn't be
_out = tmp_out[s - 1]
?
The text was updated successfully, but these errors were encountered: