https://github.com/carlosvega20/ai_exercises
https://github.com/carlosvega20/ai_exercises
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/carlosvega20/ai_exercises
- Owner: carlosvega20
- Created: 2017-02-03T04:21:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-04T00:21:36.000Z (over 8 years ago)
- Last Synced: 2025-01-17T20:23:54.400Z (5 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.10Execute:
python driver.pyi.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