()
| 6 | ) |
| 7 | |
| 8 | func main() { |
| 9 | arr1 := []int{1, 3} |
| 10 | arr_2 := []int{2} |
| 11 | fmt.Println(findMedianSortedArrays(arr1, arr_2)) |
| 12 | } |
| 13 | |
| 14 | func findMedianSortedArrays(nums1 []int, nums2 []int) float64 { |
| 15 | nums1 = append(nums1, nums2...) |
nothing calls this directly
no test coverage detected