Skip to content

Commit d8e435b

Browse files
committed
✏️ Typo
1 parent d882c01 commit d8e435b

File tree

1 file changed

+1
-1
lines changed
  • leetcode/1201-1300/1277.Count-Square-Submatrices-with-All-Ones

1 file changed

+1
-1
lines changed

leetcode/1201-1300/1277.Count-Square-Submatrices-with-All-Ones/Solution.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Solution
33
func Solution(matrix [][]int) int {
44
n, m := len(matrix), len(matrix[0])
55
dp := make([][]int, n + 1)
6-
for i, _ := range dp {
6+
for i := range dp {
77
dp[i] = make([]int, m + 1)
88
}
99
res := 0

0 commit comments

Comments
 (0)