Skip to content

Instantly share code, notes, and snippets.

@pschanely
Created February 8, 2020 05:09
Show Gist options
  • Save pschanely/344bc539abb164fe7acd3eb456f13295 to your computer and use it in GitHub Desktop.
Save pschanely/344bc539abb164fe7acd3eb456f13295 to your computer and use it in GitHub Desktop.
Shared via CrossHair Playground
from typing import List
def average(numbers: List[float]) -> float:
'''
pre: len(numbers) >= 0
post: min(numbers) <= __return__ <= max(numbers)
'''
return sum(numbers) / len(numbers)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment