Harsh Raj
Harsh Raj
### Description Write a program to convert string to pascalcase Pascalcase is a style of writing in which the first letter of each word is capitalized. ``` Input : "hello...
### Description Write a program to convert feet to miles 1 mile = 5280 feet ``` Input : 26400 Output : 5 ``` ### Tracking Issues - [x] codinasion/codinasion#319 -...
### Description Write a program to print inverted pyramid pattern ``` Input : 5 Output : 1 2 3 4 5 1 2 3 4 1 2 3 1 2...
### Description Write a R program to find factorial of a number by recursion Factorial of a number is the product of all the numbers from 1 to that number....
### Description Write a R program to find sum of squares of numbers by recursion ``` Input : 1 2 3 4 5 Output : 55 ``` How to contribute...
### Description Write a R program to implement selection sort Selection sort is a sorting algorithm that selects the smallest element from an unsorted list in each iteration and places...
### Description Write a program to find the maximum sum of a contiguous subarray Maximum subarray problem is the task of finding the contiguous subarray within a one-dimensional array of...
### Description Write a program to convert temperature from celsius to kelvin ``` Input ( C ) : -40 Output ( K ) : 233.15 ``` Contributed by - @magar51...
### Description Write a C++ program to implement selection sort Selection sort is a sorting algorithm that selects the smallest element from an unsorted list in each iteration and places...
### Description Write a C# program to find the smallest three elements in an array ```txt Input : arr[] = {10, 4, 3, 50, 23, 90} Output : 3 4...