Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Fixnum同じ長さの2 つの配列が与えられた場合、各インデックスで最大値または最小値を保持する配列を生成する Ruby の方法はありますか?
Fixnum
例えば:
a1 = [ 10, 30 ] a2 = [ 5, 35 ]
このmin関数は5、最初の列と302 番目の列から戻り、 を返します[5, 30]。同様に、max関数は10最初の列と352 番目の列から戻り、 を返します[10, 35]。
min
5
30
[5, 30]
max
10
35
[10, 35]