Harsh Raj

Results 172 issues of Harsh Raj

### Description Write a program to check valid date Check if a given date is valid or not. ``` Input : 2019-02-29 Output : False ``` ### Tracking Issues -...

auto-track
program

### Description Write a program to find smallest element in a matrix ``` Input : 4 7 3 9 4 2 0 6 4 Output : 0 ``` Contributed by...

auto-track
program

### Description Write a program to find the transpose of a matrix The transpose of a matrix is an operator which flips a matrix over its diagonal, that is it...

auto-track
program

### Description Write a Swift program to find the maximum sum of a contiguous subarray (kadane's algorithm) Kadane's algorithm is used to find the maximum sum of a contiguous subarray...

good first issue
help wanted
Swift
program

### Description Write a PHP program to find the eigenvalues of a matrix The eigenvalues and eigenvectors of a linear transformation are the values and vectors that determine the transformation....

good first issue
PHP
program

### Description Write a Perl 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
Perl
program

### Description Write a Haskell program to reverse words in a string ``` Input : "Hello World" Output : "World Hello" ``` Contributed by - @Parvezkhan0 How to contribute -...

good first issue
triage
Haskell
program

### Description Write a Julia program to reverse words in a string ``` Input : "Hello World" Output : "World Hello" ``` Contributed by - @Parvezkhan0 How to contribute -...

good first issue
triage
Julia
program

### Description Write a Rust program to reverse words in a string ``` Input : "Hello World" Output : "World Hello" ``` Contributed by - @Parvezkhan0 How to contribute -...

good first issue
triage
Rust
program

### Description Write a Swift program to reverse words in a string ``` Input : "Hello World" Output : "World Hello" ``` Contributed by - @Parvezkhan0 How to contribute -...

good first issue
triage
Swift
program