Compare commits

..

No commits in common. "main" and "main" have entirely different histories.
main ... main

1 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ public class Spreadsheet {
else
out.print(cell.getValue());
if (cell != row[cells[0].length-1])
if (cell != row[cells.length-1])
out.print(",");
}
out.println();
@ -182,7 +182,7 @@ public class Spreadsheet {
StringBuilder sb = new StringBuilder();
sb.append(" ");
for (int i = 0; i < cells[0].length; i++) {
for (int i = 0; i < cells.length; i++) {
sb.append(" " + (char)('A'+ i) + " | ");
}