Solved the 'smaller' gates and probably not with the best solutions.

This commit is contained in:
2021-01-18 21:40:37 -06:00
parent ede8302d26
commit 6cff6afc04
12 changed files with 63 additions and 0 deletions
+5
View File
@@ -14,4 +14,9 @@ CHIP Xor {
PARTS:
// Put your code here:
Nand(a=a, b=a, out=out1);
Nand(a=b, b=b, out=out2);
Nand(a=out1, b=b, out=out3);
Nand(a=out2, b=a, out=out4);
Nand(a=out3, b=out4, out=out);
}