-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.98 KB
/
Copy pathindex.html
File metadata and controls
46 lines (46 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>LeetCode Solutions</title>
<meta name="description" content="LeetCode algorithm solutions — Go, Rust, C++ write-ups.">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css">
</head>
<body>
<div id="app">Loading…</div>
<script>
window.$docsify = {
name: 'LeetCode Solutions',
repo: 'https://github.com/lyxuansang91/leetcode-algorithms',
homepage: 'README.md',
loadSidebar: true,
subMaxLevel: 2,
auto2top: true,
relativePath: false,
maxLevel: 3,
search: {
placeholder: 'Search solutions…',
noData: 'No results found.',
depth: 3
}
};
</script>
<!-- core -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
<!-- search -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.min.js"></script>
<!-- copy-to-clipboard on code blocks -->
<script src="https://cdn.jsdelivr.net/npm/docsify-copy-code@3"></script>
<!-- syntax highlighting for the languages used in this repo -->
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-go.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-rust.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-c.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-cpp.min.js"></script>
<!-- KaTeX for $...$ math in the Complexity sections -->
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-katex@latest/dist/docsify-katex.js"></script>
</body>
</html>