回答編集履歴

1

追記

2021/03/21 10:43

投稿

winterboum
winterboum

スコア23567

test CHANGED
@@ -1 +1,17 @@
1
1
  `temps.index(temps.min)`
2
+
3
+
4
+
5
+ ```
6
+
7
+ heights.each do |height| #全要素で平均気温との差を計算し、配列に収納
8
+
9
+ temps << ave_temp_difference(height)
10
+
11
+ end
12
+
13
+ ```
14
+
15
+
16
+
17
+ `temps = heights.map{|height| ave_temp_difference(height) }`