diff --git a/dynamic_programming/kadane2.cpp b/dynamic_programming/kadane2.cpp index c4732e202..d048d0d5b 100644 --- a/dynamic_programming/kadane2.cpp +++ b/dynamic_programming/kadane2.cpp @@ -1,7 +1,7 @@ /** * @file * @brief Implementation of [Kadane - * Algorithm] (https://en.wikipedia.org/wiki/Kadane%27s_algorithm) + * Algorithm](https://en.wikipedia.org/wiki/Kadane%27s_algorithm) * * @details * Kadane algorithm is used to find the maximum sum subarray in an array and