From 9de58d013885f8666ef7b38bc86a3025796def82 Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Thu, 29 Mar 2018 10:22:08 +0300 Subject: [PATCH] Add Algorithms. --- README.md | 2 ++ src/algorithms/README.md | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 src/algorithms/README.md diff --git a/README.md b/README.md index 08223232..856de5ae 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,8 @@ 3. [Stack](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/stack) 4. [Hash Table](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/hash-table) +## Algorithms + ## Running Tests **Run all tests** diff --git a/src/algorithms/README.md b/src/algorithms/README.md new file mode 100644 index 00000000..df914d11 --- /dev/null +++ b/src/algorithms/README.md @@ -0,0 +1,7 @@ +# Algorithms + +## Dynamic Programming (DP) + +**Useful Links** + +[Introduction to Dynamic Programming 1](https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/tutorial/)