Example #1
0
 public void TestMethod(int[] nums, int targert, int output)
 {
     Assert.Equal(output, Solution016.ThreeSumClosest(nums, targert));
 }
Example #2
0
 public void Solves_Problem_016_Example()
 {
     Solution016.Run(15).Should().Be(26);
 }