From 296b20ed16f36b89b6b93e7f161ba8f4397885b4 Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Sat, 19 May 2018 23:20:20 +0300 Subject: [PATCH] Update README. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8f4ae767..4f5f9242 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,7 @@ of algorithms. It is an abstraction higher than the notion of an algorithm, just algorithm is an abstraction higher than a computer program. * **Brute Force** - look at all the possibilities and selects the best solution + * [Maximum Subarray](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/sets/maximum-subarray) * **Greedy** - choose the best option at the current time, without any consideration for the future * [Unbound Knapsack Problem](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/sets/knapsack-problem) * [Dijkstra Algorithm](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/graph/dijkstra) - finding shortest path to all graph vertices