Ruby slice big array into equal parts

By using each_slice we can convert single dimension array in to multi dimention array  foo.each_slice(3).to_a #=> [["1", "2", "3"], ["4", "5", "6"], ["7", "8", "9"], ["10"]] 

Comments

Popular posts from this blog

Rails Memcache issues

scp command usage guide

cucumber usage in rails project