Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7192997
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T20:04:46+00:00 2026-05-28T20:04:46+00:00

puts (Array.new(200) {(1..100).to_a[rand(100)]}).group_by { |x| (x – 1) / 10 }.sort_by { |x| x

  • 0
puts (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)]}

In the above code, I need to chomp after each comma in the map block. The issue is that I keep getting the following output no matter what I do:

1
-
10

|

*************************

How can I chomp inside the map to make it look like the following

1-10    |  ********************
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T20:04:47+00:00Added an answer on May 28, 2026 at 8:04 pm
    (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 }
    

    But if your goal is to do that, why are you creating the nested arrays in the first place?

    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 }
    

    With some cleanup, maintaining your single-line thing:

    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 | **********************
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need some help with the following: in a method create a new array
The code require 'yaml' puts YAML.load( is_something: values: ['yes', 'no'] ).to_yaml produces --- is_something:
Here's some Ruby code: puts %x{ pstree #{$$} } # never forks puts %x{
When I make a new array/hash in irb , it prints out a nice
I have this part of code that takes a file and puts it in
Emacs puts backup files named foo~ everywhere and I don't like having to remember
Normally it just puts multiline content on a one liner field and adds slightly
class A def a puts 'in #a' end end class B < A def
My program puts an icon in the system tray because the user may minimize
My script puts together a set of htaccess rules based on information passed into

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.