sprsquish (owner)

Revisions

gist: 109017 Download_button fork
public
Public Clone URL: git://gist.github.com/109017.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
arr = [1,2,3,4,5,6,7]
half = arr.size / 2
first_half = arr[0...half]
last_half = arr[half..-1]