+ 1
Quicksort input
How does a person get an input from user by using quicksort?
1 Respuesta
0
if list is the input then use below method.
_list = eval(input("Enter the list:"))
input: [1,2,4,5,9]
How does a person get an input from user by using quicksort?