Skip to content

Commit b65ac55

Browse files
committed
I took off the grid around the printing out of the 2dArray I thought it might confuse people more than it helps
1 parent 8ec5ab1 commit b65ac55

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

Array2D/Array2D.playground/Contents.swift

+4-12
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var Array2DNumbers = Array2D(columns: 3, rows: 5, initialValue: 0)
3131
// makes an array of rows * columns elements all filled with zero
3232
print(Array2DNumbers.array)
3333

34-
//setting numbers
34+
// setting numbers using subscript [x, y]
3535
Array2DNumbers[0, 0] = 1
3636
Array2DNumbers[1, 0] = 2
3737

@@ -48,17 +48,9 @@ Array2DNumbers[2, 3] = 9
4848
// now the numbers are set in the array
4949
print(Array2DNumbers.array)
5050

51-
// printint out the 2D array with a reference around the grid [x, y]
52-
print(" ", terminator: "")
53-
for k in 0..<Array2DNumbers.columns {
54-
print(" \(k)", terminator:"")
55-
if (k == Array2DNumbers.columns - 1){
56-
print(" x")
57-
}
58-
}
59-
51+
// print out the 2D array with a reference around the grid
6052
for i in 0..<Array2DNumbers.rows {
61-
print("\(i) [", terminator: "");
53+
print("[", terminator: "");
6254
for j in 0..<Array2DNumbers.columns {
6355
if (j == Array2DNumbers.columns - 1) {
6456
print("\(Array2DNumbers[j, i])", terminator: "");
@@ -68,6 +60,6 @@ for i in 0..<Array2DNumbers.rows {
6860
}
6961
print("]");
7062
}
71-
print("y")
63+
7264

7365

0 commit comments

Comments
 (0)