Here's how to create a sequential numbered array in Swift. It's hard to remember how to write.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let hours: [Int] = Array(0..<24) | |
let minutes: [Int] = Array(0...59) | |
// hour: 0, 1, 2, ... 23 | |
print(hours.count) // 23 | |
// minutes: 0, 1, 2, ...59 | |
print(minutes.count) // 60 |