In this tutorial we will learn how to add elements from two 2d arrays using Intstream in java.
In the below example we have created two 2D Arrays.
Steps:
- First loop through rows. We can iterate over the rows of both 2D Arrays using IntStream.range(0,num1.length).
- Next loop through columns. For each row we can iterate over the columns using IntStream.range(0,num1[i].length).
- We then add corresponding matrix since we have indexes of both 2d arrays using map() function.
- Once we are done iterating through arrays we convert them to 2d array and return the result.
|
|