Skip to content

Commit dc69fd8

Browse files
authored
Update make-a-square-with-the-same-color.py
1 parent b6cd6a5 commit dc69fd8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Python/make-a-square-with-the-same-color.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Time: O((n - w + 1)^2 * w^2)
22
# Space: O(1)
33

4+
import collections
5+
6+
47
# array
58
class Solution(object):
69
def canMakeSquare(self, grid):

0 commit comments

Comments
 (0)