The Lottery draw

Report a typo

You have been hired to make a lottery draw app. Given a list of candidate numbers, please complete the function shuffledNumbers to distribute them randomly to get the winning sequence.

Sample Input 1:

1 3 4 5 6 7 8

Sample Output 1:

true
Write a program in Kotlin
fun shuffledNumbers(numbers: List<Int>): List<Int> {
// write your code here

}
___

Create a free account to access the full topic