Skip to content

Commit 80fac05

Browse files
authored
Update flip-game-ii.py
1 parent 323f0b1 commit 80fac05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/flip-game-ii.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
# 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
9+
# https://leetcode.com/problems/flip-game-ii/discuss/73954/theory-matters-from-backtracking128ms-to-dp-0ms
1010
class Solution(object):
1111
def canWin(self, s):
1212
g, g_final = [0], 0

0 commit comments

Comments
 (0)