--- title: Babbage problem id: 594db4d0dedb4c06a2a4cefd challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof babbage === "function", "babbage is a function.");' - text: '' testString: 'assert.equal(babbage(babbageAns, endDigits), answer, "babbage(99736, 269696) should not return 99736 (there is a smaller answer).");' ```
## Challenge Seed
```js function babbage (babbageNum, endDigits) { // Good luck! return true; } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```