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