(Array.new(200) {(1..100).to_a[rand(100)]}).group_by { |x| (x - 1) / 10 }.sort_by { |x| x }.map {|x, y| [10 * x + 1, "-" , 10 * (x + 1), " ", "|", " ", "*" * (y.length)]}.collect { |a| a.join }.each { |a| puts a }
但如果你的目标是这样做,你为什么要首先创建嵌套数组?
a = Array.new(200) {(1..100).to_a[rand(100)]}
a = a.group_by { |x| (x - 1) / 10 }
a = a.sort_by { |x| x }
a = a.map { |x, y| "#{10 * x + 1} - {#10 * (x + 1)} | #{'*' * (y.length)}" }
a.each { |bag| puts bag }
通过一些清理,维护您的单行内容:
Array.new(200) { rand(100) + 1 }.group_by { |x| (x - 1) / 10 }.sort.map { |x, y| sprintf "%2d - %3d | %s" % [10 * x + 1, 10 * (x + 1), '*' * y.length] }.each { |l| puts l }
1 - 10 | ********************
11 - 20 | *******************
21 - 30 | *************************
31 - 40 | ***********************
41 - 50 | ****************
51 - 60 | *******************
61 - 70 | *****************
71 - 80 | ****************
81 - 90 | ***********************
91 - 100 | **********************