MCPcopy Create free account
hub / github.com/Blankj/awesome-java-leetcode / main

Method main

src/com/blankj/hard/_0004/Solution.java:35–45  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

33 }
34
35 public static void main(String[] args) {
36 Solution solution = new Solution();
37 System.out.println(solution.findMedianSortedArrays(
38 new int[]{1, 3},
39 new int[]{2}
40 ));
41 System.out.println(solution.findMedianSortedArrays(
42 new int[]{1, 2},
43 new int[]{3, 4}
44 ));
45 }
46}

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected