()
| 11 | } |
| 12 | |
| 13 | fn main() { |
| 14 | let nums = vec![1, 1, 1, 2, 2, 3]; |
| 15 | let k = 2; |
| 16 | println!("{:?}", top_k_frequent(nums, k)); |
| 17 | println!("{:?}", top_k_frequent(vec![4,1,-1,2,-1,2,3], 2)); |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected