Ruby maxメソッドを使って配列の最大値を取得する
環境
Windows10 Home 64bit
ruby 3.1.2p20
構文
max = arr.max
maxメソッドは、呼び出した配列(array)の最大値を取得します。
使用例
ss = [41, 52, 73, 10, 84, 95] max = ss.max puts max
実行結果
95
Coding Changes the World
環境
Windows10 Home 64bit
ruby 3.1.2p20
構文
max = arr.max
maxメソッドは、呼び出した配列(array)の最大値を取得します。
使用例
ss = [41, 52, 73, 10, 84, 95] max = ss.max puts max
実行結果
95