Am currently working on a project from JetBrains Academy which requires me to read a file containing a matrix and reduce it into reduced row echelon form.
The project requirement can be found here
https://hyperskill.org/projects/40/stages/211/implement
This is my current implementation, it only reads the file into two dimensional integer array.
Any recommendations to make the current implementation robust will be appreciated.
This how the content of the file looks like
The first line determines the row length of the matrix
3
1 1 2 9
2 4 -3 1
3 6 -5 0
Thank you.