how to convert Range to Array
I tried:
let min = 50 let max = 100 let intArray:[Int] = (min...max)
get error Range is
Range is
I figured it out:
let intArray = [Int](min...max)
Giving credit to someone else.