Adding Array Copy for matrix
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

Currently only boolean but we can add more if we need
This commit is contained in:
Debucquoy
2023-04-27 10:04:31 +02:00
parent 9711be3665
commit 0baef08205
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package school_project.Utils;
import java.util.Arrays;
public class Array{
public static boolean[][] MatrixCopyOf(boolean[][] o){
boolean[][] ret = new boolean[o.length][];
for (int i = 0; i < o.length; i++){
ret[i] = Arrays.copyOf(o[i], o[i].length);
}
return ret;
}
}