Harsh Raj
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 -...
### 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...
### 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...
### 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...
### 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....
### 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...
### Description Write a Haskell program to reverse words in a string ``` Input : "Hello World" Output : "World Hello" ``` Contributed by - @Parvezkhan0 How to contribute -...
### Description Write a Julia program to reverse words in a string ``` Input : "Hello World" Output : "World Hello" ``` Contributed by - @Parvezkhan0 How to contribute -...
### Description Write a Rust program to reverse words in a string ``` Input : "Hello World" Output : "World Hello" ``` Contributed by - @Parvezkhan0 How to contribute -...
### Description Write a Swift program to reverse words in a string ``` Input : "Hello World" Output : "World Hello" ``` Contributed by - @Parvezkhan0 How to contribute -...