-
### Description
Write a TypeScript program to find the rank of a matrix
The rank of a matrix is the dimension of the vector space generated by its columns. The rank of a matrix is also equal to the …
-
### Name
Ömer
-
### Name
Rahul Khobragade
-
### Description
Write a C program to print fibonacci series without recursion
```
Input : 5
Output : 0 1 1 2 3
```
How to contribute
- Save the solution in `PrintFibonacciSeriesWithoutRecursio…
-
### Description
Write a C++ program to convert decimal to binary
Binary is a base-2 number system. It uses only two digits: 0 and 1. The digits are called bits. A bit is the smallest unit of informa…
-
### Description
Write a JavaScript program to find the sum of all numbers in an array
```
Input : [1, 2, 3, 4, 5]
Output : 15
```
How to contribute
- Save the solution in `program/FindTheSumOfAll…
-
### Name
Ansh Tripathi
-
### Description
Volume of cuboid = `Length` × `Width` × `Height`
```
Length : 2
Width : 3
Height : 4
Volume : 24
```
-
### Description
Write a JavaScript program to cylindrically rotate a matrix by 90 degrees
```
Input :
1 2 3
4 5 6
7 8 9
Output :
7 4 1
8 5 2
9 6 3
```
How to contribute
- Save the solution in `C…
-
### Name
Nisarga Adhikary