Skip to content

Commit ee28bff

Browse files
committed
Update integer-break.cpp
1 parent 8c55477 commit ee28bff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

C++/integer-break.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Solution {
1010

1111
// Proof.
1212
// 1. Let n = a1 + a2 + ... + ak, product = a1 * a2 * ... * ak
13-
// - For each aj >= 4, we can always maximize the product by:
13+
// - For each ai >= 4, we can always maximize the product by:
1414
// ai <= 2 * (ai - 2)
1515
// - For each aj >= 5, we can always maximize the product by:
1616
// aj <= 3 * (aj - 3)

0 commit comments

Comments
 (0)