Skip to content

Commit 09ff8bd

Browse files
committed
Update integer-break.py
1 parent e6d63f0 commit 09ff8bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/integer-break.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def integerBreak(self, n):
3737
# 3^a * 2^b, s.t. 3a + 2b = n
3838
#
3939
# 2. To maximize the product = 3^a * 2^b s.t. 3a + 2b = n
40-
# - For each b >= 3, we can always maximize the product by:
40+
# - For each b >= 3, we can always maximize the product by:
4141
# 3^a * 2^b <= 3^(a+2) * 2^(b-3) s.t. 3(a+2) + 2(b-3) = n
4242
#
4343
# Conclusion 2:

0 commit comments

Comments
 (0)