We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 323f0b1 commit 80fac05Copy full SHA for 80fac05
Python/flip-game-ii.py
@@ -6,7 +6,7 @@
6
7
8
# The best theory solution (DP, O(n + c^2)) could be seen here:
9
-# https://leetcode.com/discuss/64344/theory-matters-from-backtracking-128ms-to-dp-0m
+# https://leetcode.com/problems/flip-game-ii/discuss/73954/theory-matters-from-backtracking128ms-to-dp-0ms
10
class Solution(object):
11
def canWin(self, s):
12
g, g_final = [0], 0
0 commit comments