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

Function main

661-image-smoother.rs:59–65  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

57}
58
59fn main() {
60 let img = vec![vec![1,1,1], vec![1,0,1], vec![1,1,1]];
61 println!("{:?}", image_smoother(img));
62
63 let img = vec![vec![2,3,4], vec![5,6,7], vec![8,9,10], vec![11,12,13], vec![14,15,16]];
64 println!("{:?}", image_smoother(img));
65}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected