コード例 #1
0
ファイル: Day16.cs プロジェクト: xepherys/AdventOfCode
        public static void Day16b1()
        {
            List <Set> sets = ParseSets();
            OpCodes    oc   = new OpCodes();

            oc.TestAllForOpCodes(sets);

            Dictionary <int, List <string[]> > valueSets = oc.GetValueSets();
        }