From 744091f79f7d90bebed7572cfd778d3a3d03855d Mon Sep 17 00:00:00 2001 From: Kevin Desai Date: Sat, 30 Sep 2017 18:45:58 -0400 Subject: [PATCH] Update array.md --- algorithms/array.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithms/array.md b/algorithms/array.md index feadbedd..a00c794d 100644 --- a/algorithms/array.md +++ b/algorithms/array.md @@ -2,7 +2,7 @@ Arrays == - In an arrays of arrays, e.g. given `[[], [1, 2, 3], [4, 5], [], [], [6, 7], [8], [9, 10], [], []]`, print: `1, 2, 3, 4, 5, 6, 7, 8, 9, 10`. - - Implement an iterator that supports `hasNext()`, `next()` and `remove()` methods. +- Implement an iterator that supports `hasNext()`, `next()` and `remove()` methods. - Given a list of item prices, find all possible combinations of items that sum a particular value `K`. - Paginate an array with constraints, such as skipping certain items. - Implement a circular buffer using an array.