Réductions (6 heures)

Pour ces exercices, vous créerez un dépôt git nommé AlgoJS7.

Nombre d'occurrences

Indices des occurrences

Histogramme 1

> const MIN = 0, MAX = 20;
> let t = tirage (20, MIN, MAX);
[
  2,  4,  8,  9,  2, 14, 19,
  1, 20,  5, 17, 11,  4, 13,
  4, 13, 13,  6, 20, 18
];
> histogramme (t, MIN, MAX);
[
  0, 1, 2, 0, 3, 1, 1,
  0, 1, 1, 0, 1, 0, 3,
  1, 0, 0, 1, 1, 1, 2
]

Histogramme 2

    *        *       
  * *        *      *
 ** *** ** * **  ****
HTML5