forked from leetcoders/Leetcoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 861 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="css/index.css" rel="stylesheet">
</head>
<body>
<table id="leetcode_questions_table">
<thead><tr><th>Id</th><th>Question</th><th>Difficulty</th><th>Frequency</th><th>Data Structures</th><th>Algorithms</th></tr></thead>
</table>
<script id="leetcode_questions_template" type="text/x-handlebars-template">
<tbody>
{{#each questions}}
<tr><td>{{Id}}</td><td>{{Question}}</td><td>{{Difficulty}}</td><td>{{Frequency}}</td><td>{{Data_Structures}}</td><td>{{Algorithms}}</td></tr>
{{/each}}
</tbody>
</script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/data.js"></script>
<script src="js/index.js"></script>
<script src="js/jquery.tablesorter.js"></script>
<script src="js/handlebars.js"></script>
</body>
</html>