コード例 #1
0
ファイル: Day21.cs プロジェクト: richmays/RMays.Aoc2018
        public long SolveB(string input)
        {
            var register = new Day19.Register(input);

            register.Go(day21: true);

            return(register.MaxValue_Day21);
        }
コード例 #2
0
ファイル: Day21.cs プロジェクト: richmays/RMays.Aoc2018
        public long SolveA(string input)
        {
            var register = new Day19.Register(input);

            register.Go(day21: true, day21OnlyMinValue: true);

            return(register.MinValue_Day21);
        }