We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdd41b9 commit 6011e53Copy full SHA for 6011e53
Python/minimum-operations-to-make-a-uni-value-grid.py
@@ -1,6 +1,8 @@
1
-# Time: O(m * n)
+# Time: O(m * n) on average
2
# Space: O(m * n)
3
4
+import random
5
+
6
class Solution(object):
7
def minOperations(self, grid, x):
8
"""
0 commit comments