(&mut self, target: i32)
| 17 | } |
| 18 | |
| 19 | fn pick(&mut self, target: i32) -> i32 { |
| 20 | self.mmp.get_mut(&target).unwrap().rotate_right(1); |
| 21 | self.mmp[&target][0] as i32 |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | fn main() { |
nothing calls this directly
no outgoing calls
no test coverage detected