From 6c4099f0b0a6776db2ad465e046ee3846cb25673 Mon Sep 17 00:00:00 2001 From: PranavPuranik <54378813+PranavPuranik@users.noreply.github.com> Date: Thu, 2 Jan 2020 15:55:10 -0500 Subject: [PATCH] Jump Game is better with greedy and not dynamic... --- contents/algorithms/dynamic-programming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contents/algorithms/dynamic-programming.md b/contents/algorithms/dynamic-programming.md index 773f075e..0759b95a 100644 --- a/contents/algorithms/dynamic-programming.md +++ b/contents/algorithms/dynamic-programming.md @@ -26,4 +26,4 @@ Sometimes you do not need to store the whole DP table in memory, the last two va - [House Robber](https://leetcode.com/problems/house-robber/) and [House Robber II](https://leetcode.com/problems/house-robber-ii/) - [Decode Ways](https://leetcode.com/problems/decode-ways/) - [Unique Paths](https://leetcode.com/problems/unique-paths/) -- [Jump Game](https://leetcode.com/problems/jump-game/) +