mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-30 05:34:33 +08:00
Fix typos (#47)
This commit is contained in:

committed by
Yangshun Tay

parent
f2bcca85a3
commit
7870a58b31
@ -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.
|
||||
|
Reference in New Issue
Block a user