2018-09-30 23:01:58 +01:00
---
title: Babbage problem
id: 594db4d0dedb4c06a2a4cefd
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302229
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
2019-03-01 17:10:50 +09:00
< a href = "https://en.wikipedia.org/wiki/Charles_Babbage" title = "wp: Charles_Babbage" target = '_blank' > Charles Babbage< / a > , looking ahead to the sorts of problems his Analytical Engine would be able to solve, gave this example:
2019-02-25 13:36:09 +09:00
< blockquote >
What is the smallest positive integer whose square ends in the digits 269,696?
2019-03-13 10:36:32 +09:00
< footer style = "margin-left: 2em;" > Babbage, letter to Lord Bowden, 1837; see Hollingdale and Tootill, < i > Electronic Computers< / i > , second edition, 1970, p. 125.< / footer >
2019-02-25 13:36:09 +09:00
< / blockquote >
He thought the answer might be 99,736, whose square is 9,947,269,696; but he couldn't be certain.
The task is to find out if Babbage had the right answer.
2018-09-30 23:01:58 +01:00
< / section >
## Instructions
< section id = 'instructions' >
2019-03-01 17:10:50 +09:00
Implement a function to return the lowest integer that satisfies the Babbage problem. If Babbage was right, return Babbage's number.
2018-09-30 23:01:58 +01:00
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
2019-11-20 07:01:31 -08:00
- text: < code > babbage</ code > should be a function.
2019-07-26 05:24:52 -07:00
testString: assert(typeof babbage === 'function');
2018-10-20 21:02:47 +03:00
- text: < code > babbage(99736, 269696)</ code > should not return 99736 (there is a smaller answer).
2019-07-26 05:24:52 -07:00
testString: assert.equal(babbage(babbageAns, endDigits), answer);
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
2019-02-26 17:07:07 +09:00
function babbage(babbageNum, endDigits) {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
return true;
}
```
< / div >
### After Test
< div id = 'js-teardown' >
```js
2018-10-20 21:02:47 +03:00
const babbageAns = 99736;
const endDigits = 269696;
const answer = 25264;
2018-09-30 23:01:58 +01:00
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
2019-02-26 17:07:07 +09:00
function babbage(babbageAns, endDigits) {
2018-09-30 23:01:58 +01:00
const babbageNum = Math.pow(babbageAns, 2);
2018-10-20 21:02:47 +03:00
const babbageStartDigits = parseInt(babbageNum.toString().replace('269696', ''));
2018-09-30 23:01:58 +01:00
let answer = 99736;
// count down from this answer and save any sqrt int result. return lowest one
for (let i = babbageStartDigits; i >= 0; i--) {
const num = parseInt(i.toString().concat('269696'));
const result = Math.sqrt(num);
if (result === Math.floor(Math.sqrt(num))) {
answer = result;
}
}
return answer;
}
```
< / section >