Binary Pattern Problem Statement

Given an input integer N, your task is to print a binary pattern as follows:

Example:

Input:
N = 4
Output:
1111
000
11
0
Explanation:

The first line contains 'N' 1s. The next line contains 'N - 1' 0s, followed by 'N - 2' 1s on the next line, and so forth.

Input:

The first line of input contains an integer 'T' representing the number of test cases.
The first line of each test case contains a single integer 'N'.

Output:

For each test case, print 'N' lines containing the pattern, where the 'I-th' line contains N - I + 1 numbers alternatively being 1 or 0, depending on the 'I' value.

Constraints:

  • 1 ≤ T ≤ 10
  • 1 ≤ N ≤ 103
  • Time Limit: 1 sec
AnswerBot
6d

Print a binary pattern based on input integer N in a specific format.

  • Iterate from N to 1 and print N - i + 1 numbers alternatively as 1 or 0 in each line

  • Handle the test cases by reading the number of ...read more

Help your peers!
Add answer anonymously...
TCS System Engineer 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