I need to create an array with a limited size, 11 digits of type Integer . I tried it this way, but here an array of zeros is created, and I need an empty array with a limited size consisting of 11 digits of type Integer .
var temp = [Int](repeating: 0, count: 11)
[Int]? Can't use[Int?]? - Artem Novichkov