小米9.15算法笔试,NMS那题只A了43%。是代码有什么问题吗? import operator def iou(box0, box1): area0 = (box0[2] - box0[0]) * (box0[3] - box0[1]) area1 = (box1[2] - box1[0]) * (box1[3] - box1[1]) inter_x0 = max(box0[0], box1[0]) inter_x1 = min(box0[2], box1[2]) inter_y0 = max(box0[1], box1[1]) i...