NPTEL » Introduction To Programming In C
Please subscribe to our YouTube Channel : Swayam Solver
Week 2: Assignment 2 - Question 1
Due on 2022-03-10, 23:59 IST
In this assignment, you will be given an NxN matrix. You have to
determine whether the matrix is a upper triangular or lower triangular matrix or both or not a triangular matrix.
The diagonal of the matrix M of size NxN is the set of entries M(0,0),
M(1,1), M(2,2), ..., M(N,N).
A matrix is upper triangular if every entry below the diagonal is
0. For example,
1 1 1
0 0 1
0 0 2
is an upper triangular matrix. (The diagonal itself, and the entries
above can be zeroes or non-zero integers.)
A matrix is lower triangular if every entry above the diagonal is
0. For example,
2 0 0
3 1 0
4 2 2
is a lower triangular matrix (The diagonal itself, and the entries
below can be zeroes or non-zero integers.) .
A matrix is not a triangular matrix if it is neither a upper triangular nor a lower
triangular.
You may not use arrays for this program.
Input
First, you will be given N, which is the size of the matrix.
Then you will be given N rows of integers, where each row consists of
N integers separated by spaces.
Output
If the input matrix is lower triangular, then print -1.
If the input matrix is upper triangular, then print 1.
If the input matrix is both lower and upper triangular, then print 2.
If the input matrix is not a triangular matrix, then print 0.
If the input matrix is upper triangular, then print 1.
If the input matrix is both lower and upper triangular, then print 2.
If the input matrix is not a triangular matrix, then print 0.
Kindly do not use arrays in the code.
Private Test cases used for Evaluation | Status |
Test Case 1 | Passed |
Test Case 2 | Passed |
Test Case 3 | Passed |
Test Case 4 | Passed |
Test Case 5 | Passed |
Week 2: Assignment 2 - Question 2
Due on 2022-03-10, 23:59 IST
You are given a sorted(either in the increasing or in the decreasing order) sequence of positive numbers, ending with a -1. You can assume that there are atleast three numbers before the ending -1.
Note : -1 is not a part of input. It only signifies that input has ended.
Let us call the sequence x0 x1 ... xn -1.
You have to output 1 if there are atleast three distinct numbers in the sequence.
otherwise output 0
Kindly do not use arrays in the code.
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | 1 2 3 4 -1 | 1 | 1 | Passed |
Test Case 2 | 2 1 1 -1 | 0 | 0 | Passed |
Private Test cases used for Evaluation | Status |
Test Case 1 | Passed |
Test Case 2 | Passed |
Test Case 3 | Passed |
Test Case 4 | Passed |
Test Case 5 | Passed |
Week 2: Assignment 2 - Question 3
Due on 2022-03-10, 23:59 IST
You are given a non-negative sequence of numbers, ending with a -1. You can assume that there are at least two numbers before the ending -1.
Note : -1 is not a part of input. It only signifies that input has ended.
Note : -1 is not a part of input. It only signifies that input has ended.
Let us call the sequence x0 x1 ... xn -1.
You have to output the second largest element of the sequence. if there is no second largest element in the sequence then output 0.
Kindly do not use arrays in the code.
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | 4 5 -1 | 4 | 4 | Passed |
Test Case 2 | 2 2 2 -1 | 0 | 0 | Passed |
Private Test cases used for Evaluation | Status |
Test Case 1 | Passed |
Test Case 2 | Passed |
Test Case 3 | Passed |
Test Case 4 | Passed |
Test Case 5 | Passed |
Watch the video to see the program in motion.
Please subscribe to our YouTube Channel : Swayam Solver
This will help the creator to continue making quality content...
Have a great day !
No comments:
Post a Comment
Keep your comments reader friendly. Be civil and respectful. No self-promotion or spam. Stick to the topic. Questions welcome.