Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)