Fix small typos (#4357)

This commit is contained in:
Abhinav Pandey
2023-09-08 18:40:22 +05:30
committed by GitHub
parent 77caf26033
commit 81f38174a6
2 changed files with 6 additions and 6 deletions

View File

@ -15,9 +15,9 @@ import org.apache.commons.lang3.tuple.Pair;
* <p>
* link: https://en.wikipedia.org/wiki/Amicable_numbers
* <p>
* Simple Example : (220, 284)
* 220 is divisible by {1,2,4,5,10,11,20,22,44,55,110} <- SUM = 284
* 284 is divisible by {1,2,4,71,142} <- SUM = 220.
* Simple Example: (220, 284)
* 220 is divisible by {1,2,4,5,10,11,20,22,44,55,110} <-SUM = 284
* 284 is divisible by {1,2,4,71,142} <-SUM = 220.
*/
public class AmicableNumber {
/**