From 7a37a6b86e76ee22bf93ffd9d01d7acfd79d0714 Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Fri, 4 Feb 2022 08:57:25 +0100 Subject: [PATCH] Add more followup links for Max Subarray problem. --- src/algorithms/sets/maximum-subarray/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/algorithms/sets/maximum-subarray/README.md b/src/algorithms/sets/maximum-subarray/README.md index c65c5026..f06300f5 100644 --- a/src/algorithms/sets/maximum-subarray/README.md +++ b/src/algorithms/sets/maximum-subarray/README.md @@ -26,3 +26,4 @@ with the largest sum is `4, −1, 2, 1`, with sum `6`. - [Wikipedia](https://en.wikipedia.org/wiki/Maximum_subarray_problem) - [YouTube](https://www.youtube.com/watch?v=ohHWQf1HDfU&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8) - [GeeksForGeeks](https://www.geeksforgeeks.org/largest-sum-contiguous-subarray/) +- [LeetCode](https://leetcode.com/explore/interview/card/top-interview-questions-easy/97/dynamic-programming/566/discuss/1595195/C++Python-7-Simple-Solutions-w-Explanation-or-Brute-Force-+-DP-+-Kadane-+-Divide-and-Conquer)