Skip to content

Commit f0becb5

Browse files
committed
Minor formatting change to the readme for day 7.
1 parent f855abf commit f0becb5

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

day07/README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@ The included instructions booklet describes how to connect the parts together: x
1010

1111
For example:
1212

13-
```
14-
123 -> x means that the signal 123 is provided to wire x.
15-
x AND y -> z means that the bitwise AND of wire x and wire y is provided to wire z.
16-
p LSHIFT 2 -> q means that the value from wire p is left-shifted by 2 and then provided to wire q.
17-
NOT e -> f means that the bitwise complement of the value from wire e is provided to wire f.
18-
```
13+
- `123 -> x` means that the signal 123 is provided to wire x.
14+
- `x AND y -> z` means that the bitwise AND of wire x and wire y is provided to wire z.
15+
- `p LSHIFT 2 -> q` means that the value from wire p is left-shifted by 2 and then provided to wire q.
16+
- `NOT e -> f` means that the bitwise complement of the value from wire e is provided to wire f.
1917

2018
Other possible gates include OR (bitwise OR) and RSHIFT (right-shift). If, for some reason, you'd like to __emulate__ the circuit instead, almost all programming languages (for example, C, JavaScript, or Python) provide operators for these gates.
2119

0 commit comments

Comments
 (0)