This repository contains AI Problems
- Write a program in Python to design the Depth First Search (DFS) and Breadth First Search (BFS) Algorithm, which find the path from a given start state to the goal state in state space.
- Write a program in Python to design the A-Star Algorithm, which find the path from a given start state to the goal state in state space.
- Write a program in Python to design the UCS Algorithm, which find the path from a given start state to the goal state in state space.
- Write a program in Python to design the Best First Search, which find the path from a given start state to the goal state in state space.