Skip to content

Commit adc1756

Browse files
committed
TOC
1 parent a951e5b commit adc1756

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

README.md

+40
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
11
# Coding interview blog archive
22

33
Coding interview & system design problems (in Russian)
4+
5+
## TOC
6+
7+
- [cache.md](posts/cache.md)
8+
- [coin-change.md](posts/coin-change.md)
9+
- [combination-sum.md](posts/combination-sum.md)
10+
- [concatenated-words.md](posts/concatenated-words.md)
11+
- [concatenating-subarrays.md](posts/concatenating-subarrays.md)
12+
- [container-with-most-water.md](posts/container-with-most-water.md)
13+
- [database-partitioning.md](posts/database-partitioning.md)
14+
- [domino-and-tromino-tiling.md](posts/domino-and-tromino-tiling.md)
15+
- [find-median-from-data-stream.md](posts/find-median-from-data-stream.md)
16+
- [forum-on-leadership.md](posts/forum-on-leadership.md)
17+
- [how-does-https-work.md](posts/how-does-https-work.md)
18+
- [how-i-got-a-job-at-amazon.md](posts/how-i-got-a-job-at-amazon.md)
19+
- [html-entity-parser.md](posts/html-entity-parser.md)
20+
- [jump-game-vi.md](posts/jump-game-vi.md)
21+
- [letter-tile-possibilities.md](posts/letter-tile-possibilities.md)
22+
- [linked-list-cycle.md](posts/linked-list-cycle.md)
23+
- [load-balancers.md](posts/load-balancers.md)
24+
- [longest-inc-path-in-a-matrix.md](posts/longest-inc-path-in-a-matrix.md)
25+
- [maximum-profit-in-job-scheduling.md](posts/maximum-profit-in-job-scheduling.md)
26+
- [minimum-number-of-removals-to-make-mountain-array.md](posts/minimum-number-of-removals-to-make-mountain-array.md)
27+
- [move-zeroes.md](posts/move-zeroes.md)
28+
- [n-queens.md](posts/n-queens.md)
29+
- [number-of-dice-rolls-with-target-sum.md](posts/number-of-dice-rolls-with-target-sum.md)
30+
- [number-of-islands.md](posts/number-of-islands.md)
31+
- [ones-and-zeroes.md](posts/ones-and-zeroes.md)
32+
- [peak-index-in-a-mountain-array.md](posts/peak-index-in-a-mountain-array.md)
33+
- [rate-limiter.md](posts/rate-limiter.md)
34+
- [rotting-oranges.md](posts/rotting-oranges.md)
35+
- [search-suggestions-system.md](posts/search-suggestions-system.md)
36+
- [serialize-and-deserialize-binary-tree.md](posts/serialize-and-deserialize-binary-tree.md)
37+
- [sliding-window-maximum.md](posts/sliding-window-maximum.md)
38+
- [stone-game.md](posts/stone-game.md)
39+
- [unique-paths.md](posts/unique-paths.md)
40+
- [validate-binary-search-tree.md](posts/validate-binary-search-tree.md)
41+
- [what-is-system-design.md](posts/what-is-system-design.md)
42+
- [word-ladder.md](posts/word-ladder.md)
43+
- [word-search.md](posts/word-search.md)

scripts/toc.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
3+
for path in posts/*; do
4+
printf -- '- [%s](%s)\n' "${path##*/}" "${path}"
5+
done

0 commit comments

Comments
 (0)