In Ruby, I have an array:
[1, 1, 1, -1, -1, 1, -1, -1]
I want to get:
[-1, -1, -1, 1, 1, -1, 1, 1]
I'm sure Ruby has an easy one-line solution, but it escapes me right now.
|
To explain how it works:
is me saying to the
is me saying "rather than giving you a literal block, I'm going to give you something prefixed with an ampersand that acts like a block". The RDoc documentation for |
|||
|
|