<?php $expected = range('a', 'l'); $array = array_fill(0, 100, $expected); array_walk($array, 'sort'); var_export( array_filter( $array, fn($row) => $row !== $expected // only keep rows which are sorted incorrectly ) );
You have javascript disabled. You will not be able to edit any code.