配列の中に個人認識と数字が入った入力値を受け取った時。
[Federer 6 1 8 5]
フェデラーのグランドスラム優勝回数を取り扱うとして
データを分離かさせてみた。
GS_d = gets.split(" ")
👆player = GS_d[0] 選手名だけ抜く
win = GS_d[1..4].map(&:to_i)
👆優勝回数だけ
all_win = win.inject(:+)
👆優勝合計
みたいに細かく書いていった。
これでCクラスはだいたい解けるかも
More than 5 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme