Skip to content

Commit 45c5a4a

Browse files
committed
Update integer-break.py
1 parent 45a8a57 commit 45c5a4a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Python/integer-break.py

+1
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)