Harsh Raj

Results 172 issues of 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 -...

good first issue
Kotlin

### 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...

good first issue
Kotlin

### Description Write a JavaScript program to find area of a cube Area of cube = 6 × `Side`^2 ``` Side : 2 Area : 24 ``` How to contribute...

good first issue
JavaScript

### 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...

good first issue
JavaScript

### Description Write a Python program to find area of a cube Area of cube = 6 × `Side`^2 ``` Side : 2 Area : 24 ``` How to contribute...

good first issue
Python

### Description Write a Java program to find sum of numbers by recursion ``` Input : 1 2 3 4 5 Output : 15 ``` How to contribute - Save...

good first issue
Java

### 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...

good first issue
JavaScript

### 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....

good first issue
JavaScript

### 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...

good first issue
JavaScript

### 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...

good first issue
JavaScript