(String[] args)
| 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 | } |
nothing calls this directly
no test coverage detected