Fixed spliting at spaces issue

This commit is contained in:
2025-09-18 08:10:15 -04:00
parent 070d6dbe3e
commit 5aba700f48
4 changed files with 10 additions and 11 deletions

View File

@@ -15,7 +15,7 @@ def tile(grid: np.ndarray, hole: tuple[int, int]) -> None:
tile_index = 0
grid[hole] = -1
def recurse(size: int, top: int, left: int, hole: tuple[int, int]) -> None:
if size == 1:
return
@@ -59,7 +59,7 @@ def tile(grid: np.ndarray, hole: tuple[int, int]) -> None:
# to imported and invoked from other python scripts
def main():
n: int = int(input())
x, y = map(int, input().split(" "))
x, y = map(int, input().split())
grid: np.ndarray = np.zeros((2**n, 2**n), dtype=int)