Harsh Raj

Results 172 issues of 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...

good first issue
R
program

### 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...

good first issue
triage
Scala
program

### 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...

auto-track
program

### Description Write a F# program to find second smallest number in an array ``` Input : [1, 2, 3, 4, 5] Output : 2 ``` How to contribute -...

good first issue
help wanted
F#
program

### Description Write a program to print diamond pattern ``` Input : 5 Output : * *** ***** ******* ********* ******* ***** *** * ``` ### Tracking Issues - [x]...

triage
auto-track
program

### 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...

auto-track
program

### 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...

auto-track
program

### 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...

auto-track
tweet-it
tweet-confirm
program

### 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...

good first issue
triage
F#
program

### 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...

good first issue
triage
Haskell
program