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 →

  • hualing_yu 2 years ago+ 2 comments

    Same idea!

    for i in range(n):
        print(" "*(n-i-1)+"#"*(i+1))
    
    1|
    ParentPermalink
    • piyushgoyal343 5 months ago+ 0 comments

      Not working

      0|
      ParentPermalink
    • hound672 5 months ago+ 0 comments

      I think it's not so good idea, better use format in print, like: print('%s%s' % (' ' * (n - i), '#' * i))

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