Harsh Raj

Results 172 issues of Harsh Raj

### Description Write a program to convert minutes to days 1 day = 24 hours = 1440 minutes ``` Input : 7200 Output : 5 ``` ### Tracking Issues -...

auto-track
tweet-it
tweet-confirm

### Description Write a Haskell program to convert hours to minutes 1 hour = 60 minutes ``` Input : 5 Output : 300 ``` How to contribute - Save the...

good first issue
Haskell

### Description Write a Kotlin program to convert minutes to days 1 day = 24 hours = 1440 minutes ``` Input : 7200 Output : 5 ``` How to contribute...

good first issue
Kotlin

### Description Write a C++ program to add two matrices Matrix addition is the process of adding two matrices by adding the corresponding elements of the two matrices. Two matrices...

good first issue
C++

### Description Write a Kotlin program to convert days to weeks 1 week = 7 days ``` Input : 35 Output : 5 ``` How to contribute - Save the...

good first issue
Kotlin

### Description Write a Kotlin program to convert a string to an integer ``` Input : "123" Output : 123 ``` How to contribute - Save the solution in `program/ConvertAStringToAnInteger.kt`...

good first issue
Kotlin

### Description Write a Kotlin program to print numbers from n to 1 without using a loop ``` Input : 5 Output : 5 4 3 2 1 ``` How...

good first issue
Kotlin

### Description Write a Kotlin program to find surface area of a cuboid Surface area of cuboid = 2 × (`Length` × `Width` + `Length` × `Height` + `Width` ×...

good first issue
Kotlin

### Description Write a Kotlin program to find second smallest number in an array ``` Input : [1, 2, 3, 4, 5] Output : 2 ``` How to contribute -...

good first issue
Kotlin

### Description Write a JavaScript program to find volume of a cube Volume of cube = `Side`^3 ``` Side : 2 Volume : 8 ``` How to contribute - Save...

good first issue
JavaScript