Skip to content

Commit 9787692

Browse files
committed
Update integer-break.py
1 parent 1813c5a commit 9787692

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Python/integer-break.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def integerBreak(self, n):
5757
res = 3 ** (n // 3 - 1) * 4
5858
return res
5959

60+
6061
# Time: O(n)
6162
# Space: O(logn)
6263
# DP solution.

0 commit comments

Comments
 (0)