Harsh Raj

Results 172 issues of Harsh Raj

### Description Write a program to convert miles to inches 1 mile = 63360 inches ``` Input : 5 Output : 316800 ``` ### Tracking Issues - [x] #3091 -...

auto-track
tweet-it
tweet-confirm

### Description Write a C# program to check alphabet Check that the given character is an alphabet or not (a-z, A-Z). ``` Input : a Output : Alphabet ``` How...

good first issue
C#

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

good first issue
C

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

good first issue
C

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

good first issue
C#

### Description Write a TypeScript program to find average of numbers by recursion Average of numbers is the sum of all numbers divided by the number of numbers. For example,...

good first issue
TypeScript

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

good first issue
Kotlin

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

good first issue
JavaScript

### Description Write a TypeScript program to convert string to pascalcase Pascalcase is a style of writing in which the first letter of each word is capitalized. ``` Input :...

good first issue
TypeScript

### Description Write a Haskell program to print diamond pattern ``` Input : 5 Output : * *** ***** ******* ********* ******* ***** *** * ``` How to contribute -...

good first issue
Haskell