以下の方法で出来ると思ったらできなかった
# これはダメ
words.reduce.with_index do |array, word, index|
中略~
end
each_with_indexをreduceに渡したら出来た
# これでOK
words.each_with_index.reduce do |array, (word, index)|
中略
end
Go to list of users who liked
More than 5 years have passed since last update.
以下の方法で出来ると思ったらできなかった
# これはダメ
words.reduce.with_index do |array, word, index|
中略~
end
each_with_indexをreduceに渡したら出来た
# これでOK
words.each_with_index.reduce do |array, (word, index)|
中略
end
Register as a new user and use Qiita more conveniently
Go to list of users who liked