Which operations return an inverted list?

Report a typo

In the following code, we have a list of elements. Select the lines that print an inverted list of the original collection.

println(words.sortedDescending()) // a
println(words.asReversed()) // b
println(words.sorted().reversed())  // c
Select one or more options from the list
___

Create a free account to access the full topic