Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 21, 2021 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/6c521a1991b946da82321a9848151a5d to your computer and use it in GitHub Desktop.
Save parzibyte/6c521a1991b946da82321a9848151a5d to your computer and use it in GitHub Desktop.
// Indica si el tablero está vacío en las coordenadas indicadas
static boolean coordenadasVacias(int y, int x, char[][] tablero) {
return tablero[y][x] == ESPACIO_VACIO;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment