Fix typos (#47)

This commit is contained in:
Can Güney Aksakalli
2017-10-16 11:20:36 +02:00
committed by Yangshun Tay
parent f2bcca85a3
commit 7870a58b31
5 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,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`.
- In an array 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.
- 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.