public void ArrayAlgorithms_FindCombinationSuchThatPHValueIsNeutralized_Test()
        {
            // Arrange
            var input = new PhValue[] { new PhValue()
                                        {
                                            Element = "CA", Value = -3
                                        }, new PhValue()
                                        {
                                            Element = "AR", Value = 3
                                        }, new PhValue()
                                        {
                                            Element = "MN", Value = 6
                                        }, new PhValue()
                                        {
                                            Element = "PD", Value = 8
                                        } };

            // Act
            ArrayAlgorithms.FindCombinationSuchThatPHValueIsNeutralized(input);
        }