This project implements a function named sortedRowsCols, which takes a dynamic 2D array of integers with dimensions (m) rows and (n) columns. The function creates two 1D arrays: one containing the ...
A way to slice arrays of arrays or rather 2D arrays. i.e. let a = ((1,2,3),(4,5,6),(7,8,9),(10,11,12)) let b = a.slice2D(0,3,0,2) //which should then result to // ((1 ...