(i, j int)
| 13 | return len(h) |
| 14 | } |
| 15 | func (h freqHeap) Less(i, j int) bool { |
| 16 | return h[i].val > h[j].val |
| 17 | } |
| 18 | func (h freqHeap) Swap(i, j int) { |
| 19 | h[i], h[j] = h[j], h[i] |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected