回答編集履歴

2

修正

2021/08/15 01:06

投稿

asm
asm

スコア15149

test CHANGED
@@ -3,6 +3,10 @@
3
3
 
4
4
 
5
5
  ```ruby
6
+
7
+ titles = doc.search('.Product__titleLink,.Product__priceValue').map{ |node| node.inner_text }
8
+
9
+ #略
6
10
 
7
11
  titles.each_slice(2) do |(title, price)|
8
12
 

1

修正

2021/08/15 01:06

投稿

asm
asm

スコア15149

test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ```ruby
6
6
 
7
- titles.each_slices(2) do |(title, price)|
7
+ titles.each_slice(2) do |(title, price)|
8
8
 
9
9
  sample << [title, price]
10
10