()
| 57 | } |
| 58 | |
| 59 | fn 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected