docs: fix Wikipedia link in minimax.cpp

This commit is contained in:
Panquesito7
2020-07-08 11:31:43 -05:00
parent a6c3569346
commit 5f19d8d368

View File

@@ -1,8 +1,7 @@
/**
* @file
* @brief returns which is the longest/shortest number, using minimax algorithm
*
* Wikipedia: https://en.wikipedia.org/wiki/Minimax
* @brief returns which is the longest/shortest number
* using [minimax](https://en.wikipedia.org/wiki/Minimax) algorithm
*/
#include <algorithm>
#include <cmath>