Guest User

Untitled

a guest
Jun 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. def minimize():
  2. current = yield
  3. while True:
  4. value = yield current # what is this????
  5. current = min(value, current)
Add Comment
Please, Sign In to add comment