File tree 5 files changed +10
-7
lines changed
5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 9
9
script :
10
10
11
11
# - xcodebuild test -project ./All-Pairs\ Shortest\ Paths/APSP/APSP.xcodeproj -scheme APSPTests
12
- # - xcodebuild test -project ./Array2D/Tests/Tests.xcodeproj -scheme Tests
12
+ - xcodebuild test -project ./Array2D/Tests/Tests.xcodeproj -scheme Tests
13
13
- xcodebuild test -project ./AVL\ Tree/Tests/Tests.xcodeproj -scheme Tests
14
14
- xcodebuild test -project ./Binary\ Search/Tests/Tests.xcodeproj -scheme Tests
15
15
# - xcodebuild test -project ./Binary\ Search\ Tree/Solution\ 1/Tests/Tests.xcodeproj -scheme Tests
Original file line number Diff line number Diff line change 6
6
public struct Array2D < T> {
7
7
public let columns : Int
8
8
public let rows : Int
9
- private var array : [ T ]
9
+ fileprivate var array : [ T ]
10
10
11
11
public init ( columns: Int , rows: Int , initialValue: T ) {
12
12
self . columns = columns
13
13
self . rows = rows
14
- array = . init( count: rows*columns, repeatedValue : initialValue )
14
+ array = . init( repeatElement ( initialValue , count: rows*columns) )
15
15
}
16
16
17
17
public subscript( column: Int , row: Int ) -> T {
Original file line number Diff line number Diff line change 6
6
public struct Array2D < T> {
7
7
public let columns : Int
8
8
public let rows : Int
9
- private var array : [ T ]
9
+ fileprivate var array : [ T ]
10
10
11
11
public init ( columns: Int , rows: Int , initialValue: T ) {
12
12
self . columns = columns
13
13
self . rows = rows
14
- array = . init( count : rows*columns , repeatedValue : initialValue )
14
+ array = . init( repeating : initialValue , count : rows*columns )
15
15
}
16
16
17
17
public subscript( column: Int , row: Int ) -> T {
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class Array2DTest: XCTestCase {
43
43
}
44
44
45
45
func testPerformanceOnSmallArray( ) {
46
- self . measureBlock {
46
+ self . measure {
47
47
self . printArrayWith ( columns: 2 , rows: 2 , inititalValue: 1 )
48
48
}
49
49
}
@@ -54,7 +54,7 @@ class Array2DTest: XCTestCase {
54
54
// }
55
55
// }
56
56
57
- private func printArrayWith( columns columns: Int , rows: Int , inititalValue: Int ) {
57
+ fileprivate func printArrayWith( columns: Int , rows: Int , inititalValue: Int ) {
58
58
let array = Array2D ( columns: columns, rows: rows, initialValue: 4 )
59
59
for r in 0 ..< array. rows {
60
60
for c in 0 ..< array. columns {
Original file line number Diff line number Diff line change 88
88
TargetAttributes = {
89
89
7B2BBC7F1C779D720067B71D = {
90
90
CreatedOnToolsVersion = 7.2;
91
+ LastSwiftMigration = 0800;
91
92
};
92
93
};
93
94
};
220
221
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
221
222
PRODUCT_BUNDLE_IDENTIFIER = swift.algorithm.club.Tests;
222
223
PRODUCT_NAME = "$(TARGET_NAME)";
224
+ SWIFT_VERSION = 3.0;
223
225
};
224
226
name = Debug;
225
227
};
231
233
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
232
234
PRODUCT_BUNDLE_IDENTIFIER = swift.algorithm.club.Tests;
233
235
PRODUCT_NAME = "$(TARGET_NAME)";
236
+ SWIFT_VERSION = 3.0;
234
237
};
235
238
name = Release;
236
239
};
You can’t perform that action at this time.
0 commit comments