-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
141 lines (132 loc) · 4.21 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
site_name: theroyakash algorithms
site_url: https://algorithms.theroyakash.com
repo_url: https://github.com/theroyakash/algorithms.theroyakash.com
edit_uri: ""
repo_name: Star on GitHub
nav:
- Getting Started:
- Introduction: index.md
- Freebies: freebies.md
- Blind 75 Problems: ./blind75.md
- CSES Problem Set: ./cses.md
- Standard Input Output: ./io.md
- Linear Data Structures:
- Arrays, Strings and Linked Lists:
- Arrays:
- Intro to Arrays: ./arrays/arrays.md
- Array Problems: ./arrays/array-problems.md
- Subarray Problems: ./arrays/subarray.md
- Sliding window problems: ./arrays/sliding-window.md
- Linked Lists:
- Linked List STL Usage: ./LinkedLists/stl-usage.md
- Linked List problems: ./LinkedLists/problems.md
- Hashing: ./hashing/problems.md
- Stacks, Queues:
- Stacks:
- Stacks Usage: ./stacks/usage.md
- Stack Problems: ./stacks/problems.md
- CP Implementation Problems: ./implementation/problems.md
- Greedy Strategies:
- Greedy Problems: ./greedy/problems.md
- Searching and Sorting:
- Basics and introduction: ./search-sort/intro.md
- Binary search problems: ./search-sort/problems.md
- Binary search on answer: ./search-sort/bs-ans.md
- Binary search from codeforces: ./search-sort/problems-codeforces.md
- Searching and Sorting CSES Editorial: ./search-sort/cses-editorial.md
- Trees:
- Tree Implementation: ./trees/implementation.md
- Tree Problems: ./trees/problems.md
- Graphs:
- Graph Usage: graph/usage.md
- BFS and DFS: graph/bfs-dfs.md
- Graph Standard Problems: graph/standard-problems.md
- Graph Problems: graph/problems.md
- Disjoint Set Implementation: graph/dsu.md
- Heaps:
- Heaps Introduction, STL: ./heaps/heap-pq.md
- Heap Problems: ./heaps/problems.md
- Two Heaps Problems: ./2heaps/problems.md
- Recursion:
- Recursion Introduction: ./recursion/intro.md
- Recursion, Backtracking, Subset Pattern: ./recursion/problems.md
- Dynamic Programming:
- Problems: ./dp/problems.md
- Knapsack Pattern: ./dp/knapsack.md
- Unbounded Knapsack Pattern: ./dp/unbounded-knapsack.md
- DP on Strings: ./dp/dp-on-strings.md
- Matrix Chain Multiplication: ./dp/mcm.md
- DP on Stocks: ./dp/stock-dp.md
theme:
name: material
custom_dir: overrides
# logo: images/logo.png
features:
- navigation.expand
- search.highlight
- search.share
- navigation.top
- navigation.tabs
palette:
primary: black
accent: blue
icon:
repo: fontawesome/brands/git-alt
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/squirrel-16
success: octicons/check-16
question: octicons/question-16
warning: octicons/alert-16
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
plugins:
- search
- tags
markdown_extensions:
- tables
- meta
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.arithmatex:
generic: true
- admonition
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra:
generator: false
analytics:
provider: google
property: G-QZBMGS6591
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/theroyakash
- icon: fontawesome/brands/github
link: https://github.com/theroyakash
- icon: fontawesome/brands/instagram
link: https://instagram.com/theroyakash
copyright: Copyright © 2022-2026 theroyakash