docs: Add Wikipedia link in minimax.cpp

This commit is contained in:
Panquesito7
2020-07-07 23:03:26 -05:00
parent 7baec9f9f9
commit 02b7d4a4d9

View File

@@ -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 <algorithm>
#include <cmath>