Created
June 18, 2016 06:17
-
-
Save aurorapar/f99d32804f6728898cafc465c507b709 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
median = 0 | |
if len(stats)%2 == 0: | |
median = (stats[len(stats)/2] + stats[len(stats)/2]) / 2 | |
else: | |
stats[len(stats)/2] + 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment