From df40d62929cb048cabb77292d345ab5762e59854 Mon Sep 17 00:00:00 2001 From: Prateek Date: Tue, 22 Jan 2019 17:34:43 -0800 Subject: [PATCH] Added video tutorial links to issues (#29199) Added links to youtube videos explaining problems mentioned in the article. --- guide/english/algorithms/greedy-algorithms/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/algorithms/greedy-algorithms/index.md b/guide/english/algorithms/greedy-algorithms/index.md index 5481054371..cb20b61366 100644 --- a/guide/english/algorithms/greedy-algorithms/index.md +++ b/guide/english/algorithms/greedy-algorithms/index.md @@ -76,8 +76,8 @@ end Greedy Algorithms can help you find solutions to a lot of seemingly tough problems. The only problem with them is that you might come up with the correct solution but you might not be able to verify if its the correct one. All the greedy problems share a common property that a local optima can eventually lead to a global minima without reconsidering the set of choices already considered. Greedy Algorithms help us solve a lot of different kinds of problems. Stay tuned for upcoming tutorials on each one of these. -1. Shortest Path Problem. -2. Minimum Spanning Tree Problem in a Graph. +1. Shortest Path Problem. (Youtube Tutorial) +2. Minimum Spanning Tree Problem in a Graph. (Youtube Tutorial) 3. Huffman Encoding Problem. 4. K Centers Problem