From 02b7d4a4d94c8d0423fe9c3bd4553f220ef24a92 Mon Sep 17 00:00:00 2001 From: Panquesito7 Date: Tue, 7 Jul 2020 23:03:26 -0500 Subject: [PATCH] docs: Add Wikipedia link in minimax.cpp --- backtracking/minimax.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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