-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (36 loc) · 1.89 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cracking the Coding Interview</title>
<meta name="description" content="Cracking the coding interview book exercises with solutions in JavaScript">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/monokai-sublime.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/index.css">
</head>
<body>
<article>
<ul class="breadcrumb">
<li>Cracking the Coding Interview</li>
</ul>
<h2 class="title-01">Cracking the Coding Interview</h2>
<p>Soluções em JavaScript dos exercícios do livro "Cracking the Coding Interview" 6ª edição.</p>
<h3 class="title-04">Indíce</h3>
<h4 class="title-05">Capítulo 1</h4>
<ul class="list">
<li><a target="_blank" href="./docs/chapter-1/1.1-is-unique">Is Unique</a></li>
<li><a target="_blank" href="./docs/chapter-1/1.2-check-permutation">Check Permutation</a></li>
<li><a target="_blank" href="./docs/chapter-1/1.3-urlfy">URLfy</a></li>
<li><a target="_blank" href="./docs/chapter-1/1.4-palindrome-permutation">Palindrome Permutation</a></li>
<li><a target="_blank" href="./docs/chapter-1/1.5-one-away">One Away</a></li>
</ul>
</article>
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.8.0/build/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/languages/javascript.min.js"></script>
<script src="./assets/js/index.js"></script>
</body>
</html>