// Maze solver that follows the left wall #include #include #include #include #include "cell.h" #include "matrix.h" #include "Maze.h" bool solve(Maze m) { // TODO: Complete this function // Feel free to add helper functions return false; }