We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 100b7e9 commit 8c55477Copy full SHA for 8c55477
Python/integer-break.py
@@ -27,7 +27,7 @@ def integerBreak(self, n):
27
28
# Proof.
29
# 1. Let n = a1 + a2 + ... + ak, product = a1 * a2 * ... * ak
30
- # - For each aj >= 4, we can always maximize the product by:
+ # - For each ai >= 4, we can always maximize the product by:
31
# ai <= 2 * (ai - 2)
32
# - For each aj >= 5, we can always maximize the product by:
33
# aj <= 3 * (aj - 3)
0 commit comments