// TODO: Remove each 'todo' comment once I implement each part! // TODO: class comment header import java.awt.Point; import java.util.Comparator; // TODO: comment out these two imports to use your own priority queue import java.util.PriorityQueue; import java.util.Queue; public class PriorityQueueSolver implements Solver { // TODO: declare any private fields here (you may not need any) // TODO: comment header public boolean solve(Maze maze) { // TODO: implement this method return false; } }