Skip to content

Commit

Permalink
fix 009
Browse files Browse the repository at this point in the history
  • Loading branch information
alex28sh committed Oct 21, 2024
1 parent 35d7203 commit e21f7f0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Bench/009-rolling-max.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@

@Pure
def getVal(mx: Optional[int]) -> int:
Requires(mx is not None)
return mx
# pre-conditions-start
Requires(mx is not None)
# pre-conditions-end
# impl-start
return mx
# impl-end

def rolling_max(numbers: List[int]) -> List[int]:
# pre-conditions-start
Expand Down

0 comments on commit e21f7f0

Please sign in to comment.