Histograma Enumerável
module Enumerable def to_histogram inject(Hash.new(0)) { |h, x| h[x] += 1; h} endend %w(a b c d a a b).to_histogram retornará: { “a” => 3, “b” => 2, “c” => …
Continuar lendoConteúdo para você se capacitar em programação
module Enumerable def to_histogram inject(Hash.new(0)) { |h, x| h[x] += 1; h} endend %w(a b c d a a b).to_histogram retornará: { “a” => 3, “b” => 2, “c” => …
Continuar lendo