2018-09-30 23:01:58 +01:00
---
title: Hofstadter Q sequence
id: 59637c4d89f6786115efd814
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302287
2018-09-30 23:01:58 +01:00
---
## Description
<section id='description'>
2019-03-05 18:37:06 +09:00
The <a href="https://en.wikipedia.org/wiki/Hofstadter_sequence#Hofstadter_Q_sequence " title="wp: Hofstadter_sequence#Hofstadter_Q_sequence " target="_blank">Hofstadter Q sequence</a> is defined as:
<span style="left-margin: 2em;">$Q(1)=Q(2)=1, \\ Q(n)=Q\big(n-Q(n-1)\big)+Q\big(n-Q(n-2)), \quad n>2.$</span>
2019-05-22 23:30:29 +09:00
It is defined like the <a href="https://rosettacode.org/wiki/Fibonacci sequence" title="Fibonacci sequence" target="_blank">Fibonacci sequence</a>, but whereas the next term in the Fibonacci sequence is the sum of the previous two terms, in the Q sequence the previous two terms tell you how far to go back in the Q sequence to find the two numbers to sum to make the next term of the sequence.
2018-09-30 23:01:58 +01:00
</section>
## Instructions
<section id='instructions'>
2019-03-05 18:37:06 +09:00
Implement the Hofstadter Q Sequence equation as a function. The function should accept number, <code>n</code>, and return an integer.
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>hofstadterQ</code> should be a function.
2019-07-26 05:24:52 -07:00
testString: assert(typeof hofstadterQ === 'function');
2018-10-04 14:37:37 +01:00
- text: <code>hofstadterQ()</code> should return <code>integer</code>
2019-07-26 05:24:52 -07:00
testString: assert(Number.isInteger(hofstadterQ(1000)));
2018-10-04 14:37:37 +01:00
- text: <code>hofstadterQ(1000)</code> should return <code>502</code>
2019-07-26 05:24:52 -07:00
testString: assert.equal(hofstadterQ(testCase[0]), res[0]);
2018-10-04 14:37:37 +01:00
- text: <code>hofstadterQ(1500)</code> should return <code>755</code>
2019-07-26 05:24:52 -07:00
testString: assert.equal(hofstadterQ(testCase[1]), res[1]);
2018-10-04 14:37:37 +01:00
- text: <code>hofstadterQ(2000)</code> should return <code>1005</code>
2019-07-26 05:24:52 -07:00
testString: assert.equal(hofstadterQ(testCase[2]), res[2]);
2018-10-04 14:37:37 +01:00
- text: <code>hofstadterQ(2500)</code> should return <code>1261</code>
2019-07-26 05:24:52 -07:00
testString: assert.equal(hofstadterQ(testCase[3]), res[3]);
2018-09-30 23:01:58 +01:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
2019-03-05 18:37:06 +09:00
function hofstadterQ(n) {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
return n;
}
```
</div>
### After Test
<div id='js-teardown'>
```js
2018-10-20 21:02:47 +03:00
const testCase = [1000, 1500, 2000, 2500];
const res = [502, 755, 1005, 1261];
2018-09-30 23:01:58 +01:00
```
</div>
</section>
## Solution
<section id='solution'>
```js
function hofstadterQ (n) {
const memo = [1, 1, 1];
const Q = function (i) {
let result = memo[i];
if (typeof result !== 'number') {
result = Q(i - Q(i - 1)) + Q(i - Q(i - 2));
memo[i] = result;
}
return result;
};
return Q(n);
}
```
</section>