Skip to content

Implement Three New Algorithms #948

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 5, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Changed Odd to Even in String
  • Loading branch information
PatOnTheBack committed Jul 3, 2019
commit ea380fc95372845c9a1d7925d8d124a298d82260
2 changes: 1 addition & 1 deletion maths/average_median.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def main():
"""Call average module to find median of a specific list of numbers."""
print("Odd number of numbers:")
print(median([2, 4, 6, 8, 20, 50, 70]))
print("Odd number of numbers:")
print("Even number of numbers:")
print(median([2, 4, 6, 8, 20, 50]))


Expand Down