* fix: improve Project Euler descriptions and test case Improve formatting of Project Euler test descriptions. Also add poker hands array and new test case for problem 54 * feat: add typeof tests and gave functions proper names for first 100 challenges * fix: continue fixing test descriptions and adding "before test" sections * fix: address review comments * fix: adjust grids in 18 and 67 and fix some text that reference files rather than the given arrays * fix: implement bug fixes and improvements from review * fix: remove console.log statements from seed and solution
2.2 KiB
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId |
|---|---|---|---|
| 5900f3831000cf542c50fe96 | 5 | Problem 23: Non-abundant sums | 301873 |
Description
A perfect number is a number for which the sum of its proper divisors is exactly equal to the number. For example, the sum of the proper divisors of 28 would be 1 + 2 + 4 + 7 + 14 = 28, which means that 28 is a perfect number.
A number n is called deficient if the sum of its proper divisors is less than n and it is called abundant if this sum exceeds n.
As 12 is the smallest abundant number, 1 + 2 + 3 + 4 + 6 = 16, the smallest number that can be written as the sum of two abundant numbers is 24. By mathematical analysis, it can be shown that all integers greater than 28123 can be written as the sum of two abundant numbers. However, this upper limit cannot be reduced any further by analysis even though it is known that the greatest number that cannot be expressed as the sum of two abundant numbers is less than this limit.
Find the sum of all positive integers <= n which cannot be written as the sum of two abundant numbers.
Instructions
Tests
tests:
- text: <code>sumOfNonAbundantNumbers(10000)</code> should return a number.
testString: assert(typeof sumOfNonAbundantNumbers(10000) === 'number');
- text: <code>sumOfNonAbundantNumbers(10000)</code> should return 3731004.
testString: assert(sumOfNonAbundantNumbers(10000) === 3731004);
- text: <code>sumOfNonAbundantNumbers(15000)</code> should return 4039939.
testString: assert(sumOfNonAbundantNumbers(15000) === 4039939);
- text: <code>sumOfNonAbundantNumbers(20000)</code> should return 4159710.
testString: assert(sumOfNonAbundantNumbers(20000) === 4159710);
- text: <code>sumOfNonAbundantNumbers(28123)</code> should return 4179871.
testString: assert(sumOfNonAbundantNumbers(28123) === 4179871);
Challenge Seed
function sumOfNonAbundantNumbers(n) {
// Good luck!
return n;
}
sumOfNonAbundantNumbers(28123);
Solution
// solution required