Harsh Raj
Harsh Raj
### Description Write a program to convert minutes to days 1 day = 24 hours = 1440 minutes ``` Input : 7200 Output : 5 ``` ### Tracking Issues -...
### Description Write a Haskell program to convert hours to minutes 1 hour = 60 minutes ``` Input : 5 Output : 300 ``` How to contribute - Save the...
### Description Write a Kotlin program to convert minutes to days 1 day = 24 hours = 1440 minutes ``` Input : 7200 Output : 5 ``` How to contribute...
### 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...
### Description Write a Kotlin program to convert days to weeks 1 week = 7 days ``` Input : 35 Output : 5 ``` How to contribute - Save the...
### 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`...
### 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...
### Description Write a Kotlin program to find surface area of a cuboid Surface area of cuboid = 2 × (`Length` × `Width` + `Length` × `Height` + `Width` ×...
### Description Write a Kotlin program to find second smallest number in an array ``` Input : [1, 2, 3, 4, 5] Output : 2 ``` How to contribute -...
### Description Write a JavaScript program to find volume of a cube Volume of cube = `Side`^3 ``` Side : 2 Volume : 8 ``` How to contribute - Save...