can now subtract

This commit is contained in:
=
2024-02-06 18:23:43 +01:00
parent b6a7a92a93
commit 60bef312b5

View File

@@ -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),