Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. [TestMethod]
  2. public void EachArrayHasOneValue()
  3. {
  4. int[] nums1 = new int[] { 1 };
  5. int[] nums2 = new int[] { 4 };
  6.  
  7. double result = solution.FindMedianSortedArrays(nums1, nums2);
  8.  
  9. Assert.AreEqual(2.5, result);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement