Skip to content

Instantly share code, notes, and snippets.

@ofelix03
Last active February 4, 2022 09:22
Show Gist options
  • Save ofelix03/4dce7cfa3c6a193790c27f313441b580 to your computer and use it in GitHub Desktop.
Save ofelix03/4dce7cfa3c6a193790c27f313441b580 to your computer and use it in GitHub Desktop.
# 1st call
median1 = find_median([40, 57, 12])
print(f"median1 = {median1}")
# 2nd call
median2 = find_median([3, 13, 7, 5, 21, 23, 39, 23, 40, 23, 14, 12, 56, 23, 29])
print(f"median1 = {median2}")
# 3rd call
median3 = find_median([3, 13, 7, 5, 21, 23, 23, 40, 23, 14, 12, 56, 23, 29])
print(f"median1 = {median3}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment