Add interview questions

This commit is contained in:
Tay Yang Shun
2017-11-19 23:20:01 -08:00
parent b6e8283908
commit 9d74d2b836
10 changed files with 286 additions and 1 deletions

View File

@ -7,7 +7,7 @@ Arrays
- Paginate an array with constraints, such as skipping certain items.
- Implement a circular buffer using an array.
- Given array of arrays, sort them in ascending order.
- Given an array of integers, print out a histogram of using said array; include a base layer (all stars)
- Given an array of integers, print out a histogram using the said array; include a base layer (all stars)
- E.g. `[5, 4, 0, 3, 4, 1]`
```