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
line 95 should be if abs(first_element - sample_mean) > abs(last_element - sample_mean): to find the candidate that is furthest from the mean. as it is it always evaluates false
The text was updated successfully, but these errors were encountered:
line 95 should be
if abs(first_element - sample_mean) > abs(last_element - sample_mean):
to find the candidate that is furthest from the mean. as it is it always evaluates falseThe text was updated successfully, but these errors were encountered: