diff --git a/ProjectEulerCS/Problems/Problem21.cs b/ProjectEulerCS/Problems/Problem21.cs index 10d425c..3fd18d2 100644 --- a/ProjectEulerCS/Problems/Problem21.cs +++ b/ProjectEulerCS/Problems/Problem21.cs @@ -32,7 +32,7 @@ namespace ProjectEulerCS.Problems{ private const int LIMIT = 10000; //The number that is > the largest number to be checked //Instance variables private readonly List divisorSum; //Holds the sum of the divisors of the subscript number - private readonly List amicable; //Holds all amicable numbers + private readonly List amicable; //Holds all amicable numbers public List Amicable{ get{ if(!solved){