HW 13 - Playing with 2D arrays

DUE

// It should create a copy of the array nums. If you change the new array, nums should not change.
public static int[][] copy(int[][] nums){

}


// Modify nums. Replace negative values:
// When the row index is the same as the column index replace that value with 0.
// Otherwise, replace negative values with 1.
public static int[][] updateValues(int[][] nums){

}

Save your file here: .../APCSA_1/apcsa-assignments-YourUsername/homework/13_copy_arrays/MyArrayPractice.java