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
-In the flip function, you are swapping the elements at start and i, but you should be swapping arr[start] with arr[i], not with arr[i] again after it has already been assigned.
-The function is defined to return an integer but it does not have a return statement.
The text was updated successfully, but these errors were encountered:
-In the flip function, you are swapping the elements at start and i, but you should be swapping arr[start] with arr[i], not with arr[i] again after it has already been assigned.
-The function is defined to return an integer but it does not have a return statement.
The text was updated successfully, but these errors were encountered: