File size: 140 Bytes
85d9fef
 
 
 
 
1
2
3
4
5
6
from typing import Tuple

Point = Tuple[int, int]
BoxTuple = Tuple[Point, Point, Point, Point]
RegionTuple = Tuple[int, int, int, int]