JustinLin610's picture
add files
204969e
raw
history blame
No virus
140 Bytes
from typing import Tuple
Point = Tuple[int, int]
BoxTuple = Tuple[Point, Point, Point, Point]
RegionTuple = Tuple[int, int, int, int]