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

https://github.com/carlosvega20/ai_exercises


https://github.com/carlosvega20/ai_exercises

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# ai_exercises

**Artificial Intelligence (AI) Master’s/graduate level course at Columbia University.**

by **Carlos Andres Vega**

Artificial Intelligence program to resolve **n^2-puzzle game** based on:
- bfs (Breadth-First Search)(DONE)
- dfs (Depth-First Search)(DONE)
- ast (A-Star Search) (IN PROGRESS)
- ida (IDA-Star Search) (IN PROGRESS)

requirments:
- Python Python 2.7.10

Execute:
python driver.py

i.e:
python driver.py bfs 1,2,5,3,4,0,6,7,8
python driver.py dfs 1,2,5,3,4,0,6,7,8