We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45a8a57 commit 45c5a4aCopy full SHA for 45c5a4a
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