回答編集履歴

2

a

2016/06/12 15:28

投稿

mpyw
mpyw

スコア5223

test CHANGED
@@ -12,6 +12,6 @@
12
12
 
13
13
  ```rb
14
14
 
15
- ary1.zip(ary2, ary3).transpose.each(&method(:puts))
15
+ ary1.zip(ary2, ary3).each(&method(:puts))
16
16
 
17
17
  ```

1

追記

2016/06/12 15:28

投稿

mpyw
mpyw

スコア5223

test CHANGED
@@ -7,3 +7,11 @@
7
7
  [ary1, ary2, ary3].transpose.each(&method(:puts))
8
8
 
9
9
  ```
10
+
11
+
12
+
13
+ ```rb
14
+
15
+ ary1.zip(ary2, ary3).transpose.each(&method(:puts))
16
+
17
+ ```