forked from MrunaliniPachpute/DSA-Patterns-and-Problems
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
266 lines (262 loc) · 8.46 KB
/
Copy pathindex.html
File metadata and controls
266 lines (262 loc) · 8.46 KB
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Topics Home</title>
<link rel="stylesheet" href="CSS/index.css" />
<link rel="stylesheet" href="CSS/navbar.css" />
<link rel="stylesheet" href="CSS/snake.css" />
<link rel="stylesheet" href="CSS/topicsFilter.css" />
<link rel="stylesheet" href="CSS/RightSidebar.css" />
</head>
<body>
<nav class="navbar">
<div class="logo-container">
<div class="logo-img">
<img src="/DSA-Patterns-And-Problems/Images/logo.png" alt="Logo">
</div>
<div class="logo">CodeDSA</div>
</div>
<div class="nav-right">
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<button id="snakeToggle" class="snake-btn">
<span style="margin-left: 20px">Snake Cursor</span>
</button>
<button id="darkModeToggle" class="dark-mode-btn">🌙 Dark Mode</button>
</div>
</nav>
<div class="home-container">
<main>
<h1>Explore Topics</h1>
<div class="card-container">
<a class="card" href="./Arrays/arrays.html">
<h3>Arrays</h3>
<p>Problems related to arrays (TwoSum, MaximumSubarray, ...)</p>
</a>
<a class="card" href="./LinkedList/LL.html">
<h3>Linked Lists</h3>
<p>Single, double, circular linked list problems</p>
</a>
<a class="card" href="./StacksAndQueues/stackAndQueue.html">
<h3>Stacks & Queues</h3>
<p>Stack and Queue related problems</p>
</a>
<a class="card" href="./Strings/String.html">
<h3>Strings</h3>
<p>String manipulation problems</p>
</a>
<a class="card" href="./Recursion/recursion.html">
<h3>Recursion</h3>
<p>
Recursive solutions and backtracking (Factorial, NQueens, ...)
</p>
</a>
<a class="card" href="./Backtracking/Backtracking.html">
<h3>Backtracking</h3>
<p>Backtracking solutions (Combination Sum, Sudoku Solver, ...)</p>
</a>
<a class="card" href="./BinarySearch/binarySearch.html">
<h3>Binary Search</h3>
<p>Binary search and its variations</p>
</a>
<a class="card" href="./Heaps/heap.html">
<h3>Heaps</h3>
<p>Heap / PriorityQueue problems</p>
</a>
<a class="card" href="./BinaryTrees/binaryTrees.html">
<h3>Binary Trees</h3>
<p>Binary tree problems (InorderTraversal, ...)</p>
</a>
<a class="card" href="./BinarySearchTrees/bst.html">
<h3>Binary Search Trees</h3>
<p>BST-specific problems (ValidateBST, ...)</p>
</a>
<a class="card" href="./Graphs/graph.html">
<h3>Graphs</h3>
<p>Graph algorithms (DFS, BFS, Dijkstra, ...)</p>
</a>
<a class="card" href="./Dynamic_Programming/dp.html">
<h3>Dynamic Programming</h3>
<p>DP problems (1D, 2D, memoization, tabulation)</p>
</a>
<a class="card" href="./Tries/tries.html">
<h3>Tries</h3>
<p>Trie / Prefix tree problems</p>
</a>
<a class="card" href="./Maths/MathProblems.html">
<h3>Maths</h3>
<p>Mathematical problems and concepts</p>
</a>
<a
class="card"
href="./DivideAndConquer/DivideAndConquerProblems.html"
>
<h3>Divide and Conquer</h3>
<p>
Problems related to Divide and Conquer (Kth Kthlargestelement,
Median of 2 sorted lists, ...)
</p>
</a>
</div>
</main>
<div class="right-sidebar">
<aside class="recently-viewed-sidebar">
<h2>🕒<span> Recently Viewed</span></h2>
<ul id="recently-viewed-list"></ul>
<button id="clear-history-btn">Clear History</button>
</aside>
<aside class="topics-filter-sidebar">
<h2>Topics Filter</h2>
<div class="filter-dropdown">
<button class="dropdown-toggle" id="topicsDropdownBtn">
Select Topics <span class="dropdown-arrow">▼</span>
</button>
<div class="dropdown-content" id="topicsDropdownContent">
<label
><input
type="checkbox"
class="topic-filter"
value="arrays"
checked
/>
Arrays</label
>
<label
><input
type="checkbox"
class="topic-filter"
value="linkedlist"
checked
/>
Linked Lists</label
>
<label
><input
type="checkbox"
class="topic-filter"
value="stacks"
checked
/>
Stacks & Queues</label
>
<label
><input
type="checkbox"
class="topic-filter"
value="strings"
checked
/>
Strings</label
>
<label
><input
type="checkbox"
class="topic-filter"
value="recursion"
checked
/>
Recursion</label
>
<label
><input
type="checkbox"
class="topic-filter"
value="binarysearch"
checked
/>
Binary Search</label
>
<label
><input
type="checkbox"
class="topic-filter"
value="heaps"
checked
/>
Heaps</label
>
<label
><input
type="checkbox"
class="topic-filter"
value="binarytrees"
checked
/>
Binary Trees</label
>
<label
><input
type="checkbox"
class="topic-filter"
value="bst"
checked
/>
Binary Search Trees</label
>
<label
><input
type="checkbox"
class="topic-filter"
value="graphs"
checked
/>
Graphs</label
>
<label
><input
type="checkbox"
class="topic-filter"
value="dp"
checked
/>
Dynamic Programming</label
>
<label
><input
type="checkbox"
class="topic-filter"
value="tries"
checked
/>
Tries</label
>
<label
><input
type="checkbox"
class="topic-filter"
value="divideandconquer"
checked
/>
Divide and Conquer</label
>
</div>
</div>
</aside>
</div>
</div>
<footer>
<div class="footer-content">
<div class="footer-links">
<a href="index.html" aria-label="Go to Home page">Home</a>
<a href="about.html" aria-label="Go to About page">About</a>
<a href="contact.html" aria-label="Go to Contact page">Contact</a>
<a
href="https://github.com/MrunaliniPachpute"
target="_blank"
rel="noopener noreferrer"
aria-label="Visit GitHub"
>GitHub</a
>
</div>
<p>© 2025 CodeDSA. All rights reserved.</p>
</div>
</footer>
<script src="index.js"></script>
<script src="JS/filterDropdownScript.js"></script>
</body>
</html>