Skip to content

Commit b0c5d06

Browse files
committed
Delete comments from solution
1 parent ef4d2bf commit b0c5d06

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

JavaScript/chapter01/1.7 - Rotate Matrix/rroque98_sol.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,3 @@ const rotateImage = (nestedArr) => {
2222
// TESTS:
2323
console.log(JSON.stringify(rotateImage([[1,2,3],[4,5,6]])) === JSON.stringify([[4,1],[5,2],[6,3]]));
2424
console.log(JSON.stringify(rotateImage([])) === JSON.stringify([]));
25-
26-
// input: array of array
27-
// output: array of array rotated
28-
// constraits: Do it in place
29-
// edge cases: rotate clockwise? is this represented by an array of arrays of numbers?

0 commit comments

Comments
 (0)