What is the best case time complexity of radix sort algorithm?

What is the best case time complexity of radix sort algorithm? Correct Answer Ω(nk)

Concept

The radix sorting algorithm is an integer sorting algorithm, that sorts by grouping numbers by their individual digits (or by their radix). It uses each radix/digit as a key, and implements counting sort or bucket sort under the hood in order to do the work of sorting

Worst case time

O ( n )

Best case time

O ( n )

Average case time

O ( n )

Space

O(n)

Hence Option 4 is correct

Related Questions

Which of the following combines qualities of MSD radix sort and LSD radix sort?
What is the worst case time complexity of LSD radix sort?
What is the best case time complexity of comb sort and bubble sort respectively?
Why is insertion sort preferred over other sorting algorithms (like selection sort, bubble sort etc.) for Tim sort implementation?