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