-
Notifications
You must be signed in to change notification settings - Fork 3
/
lecture.html
70 lines (58 loc) · 2.01 KB
/
lecture.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
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Object-Oriented Design and Data Structures</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en-us" />
<meta http-equiv="Cache-Control" content="public, max-age=3600" /> <!-- cache for only 1 hour -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="styles/default.css" />
<script src="js/dirs.js"></script>
<script src="js/lectures.js"></script>
<script src="js/ajax.js"></script>
<script src="js/ezdom.js"></script>
<script src="js/colorize.js"></script>
<script src="js/italmath.js"></script>
<script src="js/constrain/numeric-1.2.6.js"></script>
<script src="js/constrain/constrain.js"></script>
<script src="js/constrain/constrain-graph.js"></script>
<script src="js/constrain/constrain-trees.js"></script>
<script src="js/constrain-notes.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/seedrandom/3.0.5/seedrandom.min.js"></script>
<script id="MathJax-script" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<script>
document.addEventListener('load', Constrain.autoResize)
</script>
</head>
<body>
<div id="header" role=banner>
<div id="identity">
<center>
<h1 class=booktitle><img height=80 src="images/logo.png" style="vertical-align: top"/>
<a href="index.html">Object-Oriented Design and Data Structures</a></h1>
</center>
</div>
</div>
<hr />
<div id="wrap">
<div id="content" lang="en" role=main>
This space unintentionally left blank...loading<br/>
<hr />
<!-- content -->
<!-- end content -->
</div>
</div>
<br />
<br />
<hr />
<div id="footer" role=footer>
To provide feedback or corrections, please use
<a href="https://github.com/andrewcmyers/oodds/issues">the GitHub repository</a>.
</div>
<script>
load_lecture()
jump_to_position()
</script>
</body>
</html>