We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1813c5a commit 9787692Copy full SHA for 9787692
1 file changed
Python/integer-break.py
@@ -57,6 +57,7 @@ def integerBreak(self, n):
57
res = 3 ** (n // 3 - 1) * 4
58
return res
59
60
+
61
# Time: O(n)
62
# Space: O(logn)
63
# DP solution.
0 commit comments