public void Test_IsSumOfTwo2(int[] a, int[] b, int target, bool expected)
        {
            var actual = SumOfTwo.IsSumOfTwo2(a, b, target);

            Assert.That(actual, Is.EqualTo(expected));
        }