Add solutions for part 1

This commit is contained in:
2020-11-15 13:57:48 -05:00
parent e4f9fd2682
commit 742db6d102
479 changed files with 202980 additions and 13 deletions

View File

@@ -0,0 +1,23 @@
CHIP ManifoldNot16 {
IN in;
OUT out[16];
PARTS:
Not(in=in, out=out[0]);
Not(in=in, out=out[1]);
Not(in=in, out=out[2]);
Not(in=in, out=out[3]);
Not(in=in, out=out[4]);
Not(in=in, out=out[5]);
Not(in=in, out=out[6]);
Not(in=in, out=out[7]);
Not(in=in, out=out[8]);
Not(in=in, out=out[9]);
Not(in=in, out=out[10]);
Not(in=in, out=out[11]);
Not(in=in, out=out[12]);
Not(in=in, out=out[13]);
Not(in=in, out=out[14]);
Not(in=in, out=out[15]);
}