wie man Range in Array konvertiert
Ich habe es versucht:
let min = 50
let max = 100
let intArray:[Int] = (min...max)
Fehler bekommen Range<Int> is not convertible to [Int]
Ich habe auch versucht:
let intArray:[Int] = [min...max]
und
let intArray:[Int] = (min...max) as [Int]
Sie funktionieren auch nicht.