Skip to content

Commit cb41593

Browse files
Question added
1 parent abf0c32 commit cb41593

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Dart/ToeplitzMatrix.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
// 7 4 5 1 2
1313
// Write a program to determine whether a given input is a Toeplitz matrix.
1414

15-
// Further explain this problem, without solving it
16-
1715
isToeplitzMatrix(List<List<int>> givenMatrix, int rowLen, int colLen) {
1816
for (int currentListIndex = 0; currentListIndex < colLen - 1; currentListIndex++) {
1917
List<int> currentList = givenMatrix[currentListIndex];

0 commit comments

Comments
 (0)