We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abf0c32 commit cb41593Copy full SHA for cb41593
Dart/ToeplitzMatrix.dart
@@ -12,8 +12,6 @@
12
// 7 4 5 1 2
13
// Write a program to determine whether a given input is a Toeplitz matrix.
14
15
-// Further explain this problem, without solving it
16
-
17
isToeplitzMatrix(List<List<int>> givenMatrix, int rowLen, int colLen) {
18
for (int currentListIndex = 0; currentListIndex < colLen - 1; currentListIndex++) {
19
List<int> currentList = givenMatrix[currentListIndex];
0 commit comments