-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.36 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.36 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Algorithms in Javascript</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>Algorithms in Javascript</h1>
<ol>
<li><a href="1-Fizz-Buzz/">Fizz Buzz</a></li>
<li><a href="2-Harmless-Ransom-Note/">Harmless Ransom Note</a></li>
<li><a href="3-Is-Palindrome/">Is Palindrome</a></li>
<li><a href="4-Ceaser-Cipher/">Ceaser Cipher</a></li>
<li><a href="5-Reverse-Words/">Reverse Words</a></li>
<li><a href="6-Reverse-Array-in-Place/">Reverse Array in Place</a></li>
<li><a href="7-Two-Sum/">Two Sum</a></li>
<li><a href="8-Binary-Search/">Binary Search</a></li>
<li><a href="9-Fibonacci/">Fibonacci</a></li>
<li><a href="10-Memoized-Fibonacci/">Memoized Fibonacci</a></li>
<li><a href="11-Sieve-of-Eratosthenes/">Sieve of Eratosthenes</a></li>
<li><a href="12-Bubble-Sort/">Bubble Sort</a></li>
<li><a href="13-Merge-Sort/">Merge Sort</a></li>
<li><a href="14-Max-Stock-Profit/">Max Stock Profit</a></li>
</ol>
</body>
</html>