Skip to content

Instantly share code, notes, and snippets.

@pschanely
Created March 19, 2026 12:42
Show Gist options
  • Select an option

  • Save pschanely/fccc4da1933a76e98336a16a0e6b98ac to your computer and use it in GitHub Desktop.

Select an option

Save pschanely/fccc4da1933a76e98336a16a0e6b98ac 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 +3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment