Harsh Raj
Harsh Raj
### Description Write a Kotlin program to check integer or float ``` Input : 1 Output : Integer ``` How to contribute - Save the solution in `program/CheckIntegerOrFloat.kt` file -...
### Description Write a Kotlin program to find the trace of a matrix The trace of a square matrix is the sum of the elements on the main diagonal (from...
### Description Write a JavaScript program to find area of a cube Area of cube = 6 × `Side`^2 ``` Side : 2 Area : 24 ``` How to contribute...
### Description Write a JavaScript program to convert string to camelcase Camelcase is a style of writing in which the first letter of each word is capitalized except the first...
### Description Write a Python program to find area of a cube Area of cube = 6 × `Side`^2 ``` Side : 2 Area : 24 ``` How to contribute...
### Description Write a Java program to find sum of numbers by recursion ``` Input : 1 2 3 4 5 Output : 15 ``` How to contribute - Save...
### Description Write a JavaScript program to find the cofactor of a matrix The cofactor of an element aij of a square matrix A is the determinant of the minor...
### Description Write a JavaScript program to find the adjoint of a matrix The adjoint of a square matrix A is the transpose of the matrix of cofactors of A....
### Description Write a JavaScript program to find sum of ap series An arithmetic progression (AP) is a sequence of numbers such that the difference of any two consecutive terms...
### Description Write a JavaScript program to check digit Check wether given character is a digit (0-9). ``` Input : 1 Output : Digit ``` How to contribute - Save...