-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (59 loc) · 1.59 KB
/
index.html
File metadata and controls
73 lines (59 loc) · 1.59 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
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
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>leetcode problems</title>
<style type="text/css">
body {
margin: 0 auto 0 auto;
padding: 15px;
padding-top: 0px;
max-width: 1400px;
font-size: 16px;
font-family: "Microsoft YaHei", sans-serif;
}
table {
border-collapse: collapse;
border: #6e6b6b 1px solid;
width: 100%;
text-align: left;
}
th,
td {
border: #6e6b6b 1px solid;
padding-left: 8px;
padding-top: 5px;
padding-bottom: 5px;
}
</style>
</head>
<body>
<h3>
leetcode problems
</h3>
<table>
<tr>
<th>Id</th>
<th>Name</th>
<th>difficulty</th>
<th>tag</th>
<th>link</th>
</tr>
<tr>
<td>2956</td>
<td>
Find Common Elements Between Two Arrays
</td>
<td>
easy
</td>
<td>Hashset</td>
<td>
<a href="https://leetcode.com/problems/find-common-elements-between-two-arrays/description/">leetcode</a>
<a href="https://github.com/sozcy/leetcode_problems/blob/master/2956-find-common-elements-between-two-arrays/2956-find-common-elements-between-two-arrays.md">github</a>
</td>
</tr>
</table>
</body>
</html>