Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
I know array.collect { |x| x*-1 } works but I was wondering if there is a one word method that does what I want. – steve_gallagher Dec 2 '11 at 17:17

3 Answers

up vote 2 down vote accepted
[1, 1, 1, -1, -1, 1, -1, -1].map {|e| -e}

should do the trick.

share|improve this answer

Also:

[1, 1, 1, -1, -1, 1, -1, -1].map &:-@
share|improve this answer
[1, 1, 1, -1, -1, 1, -1, -1].map(&-1.method(:*))

To explain how it works:

-1.method(:*)

is me saying to the -1 object "Can you please return to me a method object that represents you being multiplied by a variable?" and

map(&...)

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 method can be seen here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.