Skip to content

Instantly share code, notes, and snippets.

@jsrn
Last active August 29, 2015 14:19
Show Gist options
  • Save jsrn/12b76364491b61141017 to your computer and use it in GitHub Desktop.
Save jsrn/12b76364491b61141017 to your computer and use it in GitHub Desktop.
dat monkeypatch
class Array
def middle
if self.length % 2 == 1
self[length / 2]
else
[self[length/2 - 1], self[length/2]]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment