Harsh Raj
Harsh Raj
### Description Write a R program to print pascal's triangle Pascal's triangle is a triangular array of the binomial coefficients. Write a function that takes an integer value `n` as...
### Description Write a Scala program to implement ternary search Ternary search is a divide and conquer algorithm that can be used to find an element in an array. It...
### Description Write a program to check special character Check if given character is a special character (not a letter or a number). ``` Input : @ Output : Special...
### Description Write a F# program to find second smallest number in an array ``` Input : [1, 2, 3, 4, 5] Output : 2 ``` How to contribute -...
### Description Write a program to print diamond pattern ``` Input : 5 Output : * *** ***** ******* ********* ******* ***** *** * ``` ### Tracking Issues - [x]...
### Description Write a program to find digital root of a number Digital root of a number is the recursive sum of its digits until we get a single digit...
### Description Write a program to check armstrong number An Armstrong number is a number that is equal to the sum of cubes of its digits. ``` Input : 153...
### Description Write a program to find weekend days from number of years Weekend means Saturday & Sunday together. In total, we have 52 weeks in a year. So there...
### Description Write a F# 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 Haskell 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...