https://github.com/seycileli/problemsolvingarrays-java-
Problem Solving Arrays in Java
https://github.com/seycileli/problemsolvingarrays-java-
java java-8
Last synced: 7 months ago
JSON representation
Problem Solving Arrays in Java
- Host: GitHub
- URL: https://github.com/seycileli/problemsolvingarrays-java-
- Owner: seycileli
- Created: 2019-11-15T23:55:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-16T22:28:05.000Z (almost 6 years ago)
- Last Synced: 2025-01-15T10:24:11.342Z (9 months ago)
- Topics: java, java-8
- Language: Java
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# problemSolvingArrays-Java-
# I will have solutions for the code below. Anyone is welcomed to contribute if they like.
-------------------------------------------------------------------------------------------Write a JAVA program to read and print elements of array. - using recursion.
Write a JAVA program to print all negative elements in an array.
Write a JAVA program to find sum of all array elements. - using recursion.
Write a JAVA program to find maximum and minimum element in an array. - using recursion.
Write a JAVA program to find second largest element in an array.
Write a JAVA program to count total number of even and odd elements in an array.
Write a JAVA program to count total number of negative elements in an array.
Write a JAVA program to copy all elements from an array to another array.
Write a JAVA program to insert an element in an array.
Write a JAVA program to delete an element from an array at specified position.
Write a JAVA program to count frequency of each element in an array.
Write a JAVA program to print all unique elements in the array.
Write a JAVA program to count total number of duplicate elements in an array.
Write a JAVA program to delete all duplicate elements from an array.
Write a JAVA program to merge two array to third array.
Write a JAVA program to find reverse of an array.
Write a JAVA program to put even and odd elements of array in two separate array.
Write a JAVA program to search an element in an array.
Write a JAVA program to sort array elements in ascending or descending order.
Write a JAVA program to sort even and odd elements of array separately.
Write a JAVA program to left rotate an array.
Write a JAVA program to right rotate an array.
Write a JAVA program to add two matrices.
Write a JAVA program to subtract two matrices.
Write a JAVA program to perform Scalar matrix multiplication.
Write a JAVA program to multiply two matrices.
Write a JAVA program to check whether two matrices are equal or not.
Write a JAVA program to find sum of main diagonal elements of a matrix.
Write a JAVA program to find sum of minor diagonal elements of a matrix.
Write a JAVA program to find sum of each row and column of a matrix.
Write a JAVA program to interchange diagonals of a matrix.
Write a JAVA program to find upper triangular matrix.
Write a JAVA program to find lower triangular matrix.
Write a JAVA program to find sum of upper triangular matrix.
Write a JAVA program to find sum of lower triangular matrix.
Write a JAVA program to find transpose of a matrix.
Write a JAVA program to find determinant of a matrix.
Write a JAVA program to check Identity matrix.
Write a JAVA program to check Sparse matrix.
Write a JAVA program to check Symmetric matrix.