Guest User

Untitled

a guest
Apr 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. vec = 0..30
  2. vec.select {|i| i % 3 == 0}.map {|i| i*2}
  3. # => [0, 6, 12, 18, 24, 30, 36, 42, 48, 54, 60]
Add Comment
Please, Sign In to add comment