MCPcopy Create free account
hub / github.com/Ainevsia/Leetcode-Rust / main

Function main

88. Merge Sorted Array/src/main.rs:1–4  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1fn 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
6impl Solution {
7 pub fn merge(nums1: &mut Vec<i32>, m: i32, nums2: &mut Vec<i32>, n: i32) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected