--- title: Entropy id: 599d15309e88c813a40baf58 challengeType: 5 videoUrl: '' localeTitle: Entropia --- ## Description
Tarefa:

Calcule a entropia de Shannon H de uma determinada string de entrada.

Dada a variável aleatória discreta $ X $ que é uma cadeia de $ N $ "símbolos" (caracteres totais) consistindo de $ n $ caracteres diferentes (n = 2 para binário), a entropia de Shannon de X em bits / símbolo é:

$ H_2 (X) = - \ sum_ {i = 1} ^ n \ frac {count_i} {N} \ log_2 \ left (\ frac {count_i} {N} \ right) $

onde $ count_i $ é a contagem do caractere $ n_i $.

## Instructions
## Tests
```yml tests: - text: entropy é uma função. testString: 'assert(typeof entropy === "function", "entropy is a function.");' - text: entropy("0") deve retornar 0 testString: 'assert.equal(entropy("0"), 0, "entropy("0") should return 0");' - text: entropy("01") deve retornar 1 testString: 'assert.equal(entropy("01"), 1, "entropy("01") should return 1");' - text: entropy("0123") deve retornar 2 testString: 'assert.equal(entropy("0123"), 2, "entropy("0123") should return 2");' - text: entropy("01234567") deve retornar 3 testString: 'assert.equal(entropy("01234567"), 3, "entropy("01234567") should return 3");' - text: entropy("0123456789abcdef") deve retornar 4 testString: 'assert.equal(entropy("0123456789abcdef"), 4, "entropy("0123456789abcdef") should return 4");' - text: entropy("1223334444") deve retornar 1.8464393446710154 testString: 'assert.equal(entropy("1223334444"), 1.8464393446710154, "entropy("1223334444") should return 1.8464393446710154");' ```
## Challenge Seed
```js function entropy (s) { // Good luck! } ```
## Solution
```js // solution required ```