public void Example1() { var sol = new ContinuousSubarraySumSolution(); var result = sol.CheckSubarraySum(new[] { 23, 2, 4, 6, 7 }, 6); Assert.IsTrue(result); }
public void Example5() { var sol = new ContinuousSubarraySumSolution(); var result = sol.CheckSubarraySum(new[] { 1, 2, 3 }, 4); Assert.IsFalse(result); }