We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Loading...
  • Practice
  • Compete
  • Jobs
  • Leaderboard
  • Hiring developers?
  1. Practice
  2. Algorithms
  3. Warmup
  4. Staircase
  5. Discussions

Staircase

  • Problem
  • Submissions
  • Leaderboard
  • Discussions
  • Editorial

    You are viewing a single comment's thread. Return to all comments →

  • jtipton 3 years ago+ 1 comment

    Python, Meet Ruby

    n = gets.strip.to_i for i in 1..n do puts "#{' ' * (n-i)}#{'#' * i}" end

    0|
    ParentPermalink
    • mvanlamz 9 months ago+ 0 comments

      Range and map is more ruby-esque:

      def staircase(n)

      (1..n).map{|x| "#{' ' * (n - x)}#{'#' * x}"}.join("\n") + "\n"

      end

      n = gets.to_i

      puts(staircase n)

      0|
      ParentPermalink
  • Contest Calendar
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy
  • Request a Feature