Idempotent Matrix Verification
Determine if a given N * N matrix is an idempotent matrix. A matrix is considered idempotent if it satisfies the following condition:
M * M = M
Input:
The first line contains a single integer N, denoting the size of the matrix. The next N lines each contain N space-separated integers, representing the elements of the matrix.
Output:
Output 'true' if the matrix is idempotent; otherwise, output 'false'.
Example:
Input:
2
1 0
0 1
Output:
true
Constraints:
- 1 <= N <= 103
Note
This task only requires determining the property of the matrix without additional output formatting.

AnswerBot
4mo
Check if a given matrix is idempotent by verifying if M * M equals M.
Calculate the product of the matrix with itself and compare it with the original matrix.
If the product equals the original matrix, ...read more
Help your peers!
Add answer anonymously...
Deloitte Analyst interview questions & answers
An Analyst was asked 4w agoQ. What are the concepts of Object-Oriented Programming (OOP) and its pillars?
An Analyst was asked 4w agoQ. What is the process to reverse a string?
An Analyst was asked 4w agoQ. Given an array of integers and a target sum, find two numbers in the array that ...read more
Popular interview questions of Analyst
An Analyst was asked 4w agoQ1. What are the concepts of Object-Oriented Programming (OOP) and its pillars?
An Analyst was asked 4w agoQ2. What is the process to reverse a string?
An Analyst was asked 4w agoQ3. Given an array of integers and a target sum, find two numbers in the array that ...read more
Top HR questions asked in Deloitte Analyst
An Analyst was asked 2d agoQ1. What actions would you take if you were appointed as a team lead?
An Analyst was asked 5d agoQ2. What are your weaknesses?
An Analyst was asked 2mo agoQ3. Why do you want to switch?
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

