mirror of
https://github.com/enzet/map-machine.git
synced 2025-04-30 18:57:49 +02:00
8 lines
No EOL
272 B
Python
8 lines
No EOL
272 B
Python
class MinMax:
|
|
def __init__(self):
|
|
self.min_ = None
|
|
self.max_ = None
|
|
|
|
def add(self, value):
|
|
self.min_ = value if not self.min_ or value < self.min_ else self.min_
|
|
self.max_ = value if not self.max_ or value > self.max_ else self.max_ |