MCPcopy Create free account
hub / github.com/StudyRust/leetcode_rust / main

Function main

283-move-zeroes.rs:10–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8}
9
10fn main() {
11 let mut nums = vec![1, 0, 0, 4, 3, 12];
12 move_zeroes(&mut nums);
13 println!("{:?}", nums);
14 let mut nums = vec![1, 0, 0, 0, 1];
15 move_zeroes(&mut nums);
16 println!("{:?}", nums);
17}

Callers

nothing calls this directly

Calls 1

move_zeroesFunction · 0.85

Tested by

no test coverage detected