()
| 1 | fn main() { |
| 2 | let mut input = vec![1,2,3,0,0,0]; |
| 3 | Solution::merge(&mut input, 3,&mut vec![2,5,6],3); |
| 4 | } |
| 5 | |
| 6 | impl Solution { |
| 7 | pub fn merge(nums1: &mut Vec<i32>, m: i32, nums2: &mut Vec<i32>, n: i32) { |
nothing calls this directly
no outgoing calls
no test coverage detected