示例#1
0
        public void Part1()
        {
            var rows = new[]
            {
                1721,
                979,
                366,
                299,
                675,
                1456
            };

            ExpenseReport.FindSum(rows, 2020)
            .Should().BeEquivalentTo(new[] { 1721, 299 });
        }