Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/doguedogue/rompecabezas-4x4
Resolviendo (Solving) 8 Puzzle, 15 puzzle, Gem Puzzle, Boss Puzzle, Game of Fifteen, Mystic Square, etc.
https://github.com/doguedogue/rompecabezas-4x4
Last synced: 11 days ago
JSON representation
Resolviendo (Solving) 8 Puzzle, 15 puzzle, Gem Puzzle, Boss Puzzle, Game of Fifteen, Mystic Square, etc.
- Host: GitHub
- URL: https://github.com/doguedogue/rompecabezas-4x4
- Owner: doguedogue
- Created: 2020-02-12T22:48:06.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-07-08T13:48:00.000Z (over 2 years ago)
- Last Synced: 2024-10-26T22:11:20.668Z (about 2 months ago)
- Language: Java
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rompecabezas-4x4 using A* / Problema de Rompecabezas 8 usando A*
Resolviendo (Solving) 8 Puzzle, 15 puzzle, Gem Puzzle, Boss Puzzle, Game of Fifteen, Mystic Square, etc.## Problem
Given a 3×3 board with 8 tiles (every tile has one number from 1 to 8) and one empty space. The objective is to place the numbers on tiles to match final configuration using the empty space. We can slide four adjacent (left, right, above and below) tiles into the empty space.## Problema
Dado un tablero de 3x3 con 8 losas (cada losa tiene un número del 1 al 8) y un espacio vacío. El objetivo es poner los números de las losas concuerden con la configuración final usando el espacio vacío. Podemos deslizar cuatro adyacentes (izquierda, derecha, arriba y abajo) losas en el espacio vacío.Source/Fuente:
[https://blog.goodaudience.com/solving-8-puzzle-using-a-algorithm-7b509c331288](https://blog.goodaudience.com/solving-8-puzzle-using-a-algorithm-7b509c331288)