2018-09-30 23:01:58 +01:00
---
title: Fibonacci word
id: 5992e222d397f00d21122931
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302269
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
2019-05-22 23:30:29 +09:00
The Fibonacci Word may be created in a manner analogous to the Fibonacci Sequence < a href = "https://hal.archives-ouvertes.fr/docs/00/36/79/72/PDF/The_Fibonacci_word_fractal.pdf" target = "_blank" > as described here< / a > :
2019-03-02 21:27:55 +09:00
< pre >
2019-06-14 20:04:16 +09:00
Define F_Word< sub > 1< / sub > as < strong > 1< / strong >
Define F_Word< sub > 2< / sub > as < strong > 0< / strong >
Form F_Word< sub > 3< / sub > as F_Word< sub > 2< / sub > concatenated with F_Word< sub > 1< / sub > i.e.: < strong > 01< / strong >
2019-03-02 21:27:55 +09:00
Form F_Word< sub > n< / sub > as F_Word< sub > n-1< / sub > concatenated with F_word< sub > n-2< / sub >
< / pre >
2018-09-30 23:01:58 +01:00
< / section >
## Instructions
< section id = 'instructions' >
2019-06-14 20:04:16 +09:00
Write a function to return the Fibonacci Words up to < code > n< / code > . < code > n< / code > will be provided as a parameter to the function. The function should return an array of objects. The objects should be of the form: < code > { N: 1, Length: 1, Entropy: 0, Word: '1' }< / code > .
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 > fibWord</ code > should be a function.
2019-06-14 20:04:16 +09:00
testString: assert(typeof fibWord === 'function');
2018-10-04 14:37:37 +01:00
- text: < code > fibWord(5)</ code > should return an array.
2019-06-14 20:04:16 +09:00
testString: assert(Array.isArray(fibWord(5)));
- text: < code > fibWord(5)</ code > should return < code > [{ N:1, Length:1, Entropy:0, Word:"1" },{ N:2, Length:1, Entropy:0, Word:"0" },{ N:3, Length:2, Entropy:1, Word:"01" },{ N:4, Length:3, Entropy:0.9182958340544896, Word:"010" },{ N:5, Length:5, Entropy:0.9709505944546688, Word:"01001" }]</ code > .
testString: assert.deepEqual(fibWord(5),ans);
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
2019-03-02 21:27:55 +09:00
function fibWord(n) {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
}
```
< / div >
### After Test
< div id = 'js-teardown' >
```js
2018-10-20 21:02:47 +03:00
let ans=[ { N: 1, Length: 1, Entropy: 0, Word: '1' },
{ N: 2, Length: 1, Entropy: 0, Word: '0' },
{ N: 3, Length: 2, Entropy: 1, Word: '01' },
{ N: 4, Length: 3, Entropy: 0.9182958340544896, Word: '010' },
{ N: 5, Length: 5, Entropy: 0.9709505944546688, Word: '01001' }];
2018-09-30 23:01:58 +01:00
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
function fibWord(n) {
function entropy(s) {
//create an object containing each individual char
2018-10-08 01:01:53 +01:00
//and the amount of iterations per char
2018-09-30 23:01:58 +01:00
function prob(s) {
var h = Object.create(null);
2018-10-02 15:02:53 +01:00
s.split('').forEach(function(c) {
2018-10-08 01:01:53 +01:00
h[c] & & h[c]++ || (h[c] = 1);
2018-09-30 23:01:58 +01:00
});
return h;
}
2018-10-08 01:01:53 +01:00
s = s.toString(); //just in case
2018-09-30 23:01:58 +01:00
var e = 0, l = s.length, h = prob(s);
for (var i in h ) {
var p = h[i]/l;
e -= p * Math.log(p) / Math.log(2);
}
return e;
}
var wOne = "1", wTwo = "0", wNth = [wOne, wTwo], w = "", o = [];
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
for (var i = 0; i < n ; i + + ) {
if (i === 0 || i === 1) {
w = wNth[i];
} else {
w = wNth[i - 1] + wNth[i - 2];
wNth.push(w);
}
var l = w.length;
var e = entropy(w);
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
if (l < = 21) {
o.push({
N: i + 1,
Length: l,
Entropy: e,
Word: w
});
} else {
o.push({
N: i + 1,
Length: l,
Entropy: e,
Word: "..."
});
2018-10-08 01:01:53 +01:00
}
2018-09-30 23:01:58 +01:00
}
return o;
}
```
< / section >