seannam / 30-seconds-of-swift-code

Swift implementation of 30-seconds-of-code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Swift implementation of "30 Seconds of Code", no affiliation.

Define mutable 2D array

2 dimensional array of arrays of Ints

var arr = [[Int]]()
var arr: [[Int]] = []

About

Swift implementation of 30-seconds-of-code