Had the challenge and time limit put to me the other day so here’s my working solution:
func shuffleArray(array: [Int]) -> [Int] {
var tempArray = array
for index in 0...array.count - 1 {
let randomNumber = arc4random_uniform(UInt32(myArray.count - 1))
let randomIndex = Int(randomNumber)
tempArray[randomIndex] = array[index]
}
return tempArray
}
shuffleArray(myArray)
shuffleArray(myArray)
shuffleArray(myArray)
Very simple solution.. Thank you very much!
ReplyDeleteThank you very much
ReplyDeleteRuth Bugembe