(10..12).map{ |size| [size,size + 0.5] }.flatten[0...-1]
在Ruby中存在一种更有说服力的方法,而不必扁平化并删除最后一个元素吗?
>> (10..12).step(0.5).to_a => [10.0,11.0,12.0]