| 58 | std::copy_n(scores, numBoxes, scoresData.begin()); |
| 59 | |
| 60 | struct Candidate { |
| 61 | int boxIndex; |
| 62 | float score; |
| 63 | }; |
| 64 | |
| 65 | auto cmp = [](const Candidate bsI, const Candidate bsJ) { return bsI.score < bsJ.score; }; |
| 66 |
no outgoing calls
no test coverage detected