diff --git a/backtracking/minimax.cpp b/backtracking/minimax.cpp index 9b97552da..1e5a2ae91 100644 --- a/backtracking/minimax.cpp +++ b/backtracking/minimax.cpp @@ -1,6 +1,8 @@ /** * @file - * @brief returns which is the longest/shortest number + * @brief returns which is the longest/shortest number, using minimax algorithm + * + * Wikipedia: https://en.wikipedia.org/wiki/Minimax */ #include #include