Quiz: Practical Sorting

Test your understanding

Check Your Understanding

You need to sort strings so that "apple" comes before "Banana" (case-insensitive). What do you need?

  1. A.A different sorting algorithm
  2. B.Convert all strings to lowercase first, then sort
  3. C.A custom comparator that lowercases before comparing
  4. D.Use radix sort instead
Start the roadmap to answer the quizzes and solve the challenges