// Interface to the maze solver // !!! DO NOT MODIFY THIS FILE !!! #ifndef SOLVE_H #define SOLVE_H #include #include "Maze.h" bool solve(Maze m); #endif