Harsh Raj
Harsh Raj
### Description Write a Swift program to find sum of n natural numbers by recursion ``` Input : 5 Output : 15 ``` How to contribute - Save the solution...
### Description Write a Swift program to implement binary search Binary search is a fast search algorithm with run-time complexity of Ο(log n). This search algorithm works on the principle...
### Description Write a 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 that...
### Description Write a Haskell program to move all zeroes to end of array ```txt Input : arr[] = {1, 2, 0, 4, 3, 0, 5, 0}; Output : arr[]...
### Description Write a Julia program to move all zeroes to end of array ```txt Input : arr[] = {1, 2, 0, 4, 3, 0, 5, 0}; Output : arr[]...
### Description Write a Rust program to move all zeroes to end of array ```txt Input : arr[] = {1, 2, 0, 4, 3, 0, 5, 0}; Output : arr[]...
### Description Write a Scala program to move all zeroes to end of array ```txt Input : arr[] = {1, 2, 0, 4, 3, 0, 5, 0}; Output : arr[]...
### Description Write a R program to convert string to constantcase Constantcase is a style of writing in which all letters are uppercase and spaces are replaced with underscores. ```...
### Description Write a R program to convert decimal to binary Binary is a base-2 number system. It uses only two digits: 0 and 1. The digits are called bits....
### Description Write a R program to convert decimal to hexadecimal Hexadecimal is a base-16 number system. It uses sixteen digits: 0, 1, 2, 3, 4, 5, 6, 7, 8,...