Triangle of Numbers Pattern

Ninja is tasked with printing a triangle pattern based on a given number 'N' for any test case.

Example:

Input:
N = 4
Output:
   1
232
34545
4567654

Explanation:

The pattern comprises numbers aligned in a triangle, centered and incremented with each row.

Constraints:

  • 1 <= T <= 5
  • 1 <= N <= 100
  • The number of test cases 'T'.
  • The number of rows 'N'.
  • Time limit: 1 sec.
AnswerBot
8d

Print a triangle pattern of numbers based on given input 'N'.

  • Iterate through each row and print the numbers in a centered and incremented manner

  • Use nested loops to handle the alignment and incrementin...read more

Help your peers!
Add answer anonymously...
Daffodil Software Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter