diff --git a/python/tuple_tools.py b/python/tuple_tools.py index 985f516..95c28be 100644 --- a/python/tuple_tools.py +++ b/python/tuple_tools.py @@ -1,4 +1,7 @@ +def subtract(a, b, c, x, y, z) -> tuple: + return (a-x, b-y, c-z) + def generate_neighbors(a, b, c): return [ (a-1, b, c),