(a: str, b: str)
| 1175 | |
| 1176 | # Before testing sorting, validate pairwise comparator consistency |
| 1177 | def py_cmp(a: str, b: str) -> int: |
| 1178 | return -1 if a < b else (1 if a > b else 0) |
| 1179 | |
| 1180 | def sz_cmp(a: str, b: str) -> int: |
| 1181 | sa, sb = Str(a), Str(b) |
no outgoing calls
no test coverage detected
searching dependent graphs…