# sorting medium

Fastest Lap First

The race board shows lap times best-first — and in racing, the SMALLEST time is the best one. 🏁

You get a list of times. Using one of YOUR hand-built sorts, arrange them fastest (smallest) first and print comma-separated.

Example:

Input: times = [83, 79, 91, 75] Output: 75,79,83,91

Sorting ascending puts the fastest (smallest) lap time first.

💡 need a hint?

sort-fastest-lap-first.py🔒 given lines are locked — write your code in between
loading...