说我有这个数组:
b = Hash.new
a.uniq.each { |x| b[x] = a.count[x] }
# { 1 => 2, 2 => 1, 3 => 1, 4 => 1, 5 => 1 }
我想根据数组中使用的次数对每个唯一元素进行分组。
到目前为止,我试过这个,但我很确定有一种更有效的Rubyist方式:
var mContainer = document.createElement("div");
//adds class "table-div" to element
mContainer.classList.add('table-div');