Last active
February 4, 2022 09:22
-
-
Save ofelix03/4dce7cfa3c6a193790c27f313441b580 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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