-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestify.html
More file actions
37 lines (35 loc) · 1.27 KB
/
testify.html
File metadata and controls
37 lines (35 loc) · 1.27 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
<title>Test runner</title>
</head>
<body draggable="false">
<div class="container">
<div class="cube">
<figure class="face front"></figure>
<figure class="face left"></figure>
<figure class="face right"></figure>
<figure class="face back"></figure>
<figure class="face top"></figure>
<figure class="face bottom"></figure>
</div>
</div>
</body>
<script src="testify-view.js"></script>
<script src="./dataStructures/arrays.js"></script>
<script src="./dataStructures/linkedList.js"></script>
<script src="./dataStructures/binarySearchTree.js"></script>
<script src="./dataStructures/hashTable.js"></script>
<script src="./dataStructures/heap.js"></script>
<script src="./dataStructures/AVLTree.js"></script>
<script src="./algorithms/BFS.js"></script>
<script src="./algorithms/binarySearch.js"></script>
<script src="./algorithms/DFS.js"></script>
<script src="./algorithms/Dijkstras.js"></script>
<script src="./algorithms/matrix.js"></script>
<script src="./algorithms/insertionSort.js"></script>
<script src="./algorithms/mergeSort.js"></script>
<script src="./algorithms/quickSort.js"></script>
<script src="testify-tests.js"></script>