Sorting
Practice Sorting problems
Sorting serves as both an interview topic and a preprocessing step for other problems. Beyond implementing classic algorithms like merge sort and quicksort, interview problems test custom comparators, partition logic, and the insight that sorting can transform O(n²) problems into O(n log n) solutions.
Practice 24 interactive coding problems with step-by-step execution visualization.
Practice Sorting problems