示例#1
0
    public override void PartOne()
    {
        var c    = Computer.From(InputLine);
        var data = new DataLink(c);

        c.LineOut = Computer.AsciiOutput();

        var setup =
            @"south
take fixed point
north
west
west
west
take hologram
east
east
east
north
take candy cane
west
take antenna
south
take whirled peas
north
west
take shell
east
east
north
north
take polygon
south
west
take fuel cell
west
";
        var options = new[] { "fixed point", "hologram", "candy cane", "antenna", "whirled peas", "shell", "polygon", "fuel cell" };

        data.InsertAscii(setup);
        options.ForEach(s => data.InsertAscii($"drop {s}\n"));

        foreach (var subset in options.Subsets())
        {
            foreach (var item in subset)
            {
                data.InsertAscii($"take {item}\n");
            }
            data.InsertAscii("west\n");
            foreach (var item in subset)
            {
                data.InsertAscii($"drop {item}\n");
            }
        }

        c.Execute();
    }
示例#2
0
    public override void PartOne()
    {
        var c    = Computer.From(InputLine);
        var data = new DataLink(c);

        data.InsertAscii(
            @"NOT C T
OR D J
AND T J
NOT A T
OR T J
WALK
");
        WriteLn(c.LastOutput());
    }
示例#3
0
    public override void PartTwo()
    {
        var c    = Computer.From(InputLine);
        var data = new DataLink(c);

        data.InsertAscii(
            @"NOT C T
NOT B J
OR T J
AND D J
AND H J
NOT A T
OR T J
RUN
");
        WriteLn(c.LastOutput());
    }