Вычислите AUC-ROC (Area Under the Receiver Operating Characteristic Curve) с нуля, используя трапецоидальный метод.
Верните AUC-ROC, округлённый до 4 знаков.
def auc_roc(y_true: list[int], y_scores: list[float]) -> float:y_true = [1,1,0,0]y_scores = [0.9,0.8,0.3,0.1]1y_true = [1,0,1,0]y_scores = [0.9,0.8,0.2,0.1]0.75y_true = [0,0,1,1]y_scores = [0.9,0.8,0.3,0.1]0