diff --git a/assign1.md b/assign1.md index 54b3feb48ccfa664a6b4d2aa193c8120270e3efb..9fb32c898c926fba8e1e070a6b78b8513264fd00 100644 --- a/assign1.md +++ b/assign1.md @@ -119,7 +119,7 @@ explicit `Int` version is fine if you don't get the generic working). The first is: ``` // class-less function that will return of any square 2D Int array rotated clockwise - public func rotate2Dints(input: [[Int]]) -> [[Int]] {} + public func rotate2DInts(input: [[Int]]) -> [[Int]] {} ``` You should also build `rotate2D`, which is a *generic* version of the above.