-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmeta.html
38 lines (29 loc) · 936 Bytes
/
meta.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Using this Site</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="rsrc/style/style.css" rel="stylesheet" />
</head>
<body>
<article>
<h1>Using this Site</h1>
<div>
<!-- TODO: add a section here explaining different table representations
1-dimensional table:
Input-A Input-B Output
False False False
False True True
True False True
True True True
There are two inputs, and each input can have 2 possible values, thus there are 2^2 = 4 outputs
2-dimensional table:
False True
False False True
True True True
There are two inputs, and all possible values for each input are listed along the top row and left columns. The intersecting region is the ouptut. There are 2 inputs * 2 inputs = 4 possible outputs.
-->
</div>
</article>
</body>
</html>