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.
Ruby (1.9) で次の配列をプログラムで作成するにはどうすればよいですか。
これは 7n + 1 のパターンに従い、24 個の数字を含めたいと考えています。
arr = ["8","15","22","29","36","43","50","57","64","71" ]
結果を使用collectして適用します。to_s
collect
to_s
(1..24).collect{|n| (n*7 + 1).to_s}
編集:数値を文字列に変換するのを忘れてすみません。コードは現在編集されています。
Array.new(24){|i| (i * 7 + 8).to_s}