diff --git a/lib/PacManAI.cpp b/lib/PacManAI.cpp index 523bdff..c605b6b 100644 --- a/lib/PacManAI.cpp +++ b/lib/PacManAI.cpp @@ -33,8 +33,11 @@ bool PacManAI::isValidMove(const Move & move) { // This function is not yet implemented. // You will implement it as part of module 25. -Direction PacManAI::optimalDirection(const std::array &) { - return Direction::NONE; +Direction PacManAI::optimalDirection(const std::array & moves) { + auto bestMove = std::min_element(moves.begin(), moves.end(), [](Move a, Move b) { + return a.distanceToTarget < b.distanceToTarget; + }); + return bestMove->direction; } void PacManAI::update(const PacMan & pacMan, const Pellets & pellets) {