forked from hummel/PR1-Spreadsheet
min() und max() Methode ergänzt
parent
10f0aef19a
commit
111b4a36eb
|
@ -239,9 +239,24 @@ public class Spreadsheet {
|
|||
* @return The minimum value of the block.
|
||||
*/
|
||||
private long min(String startCellName, String endCellName) {
|
||||
long result = 0;
|
||||
|
||||
for(char col = startCellName.charAt(0); col <= endCellName.charAt(0); col++){
|
||||
|
||||
return 0;
|
||||
for(int row = Integer.parseInt(startCellName.substring(1)); row <= Integer.parseInt(endCellName.substring(1)); row++) {
|
||||
|
||||
String value = get((row - 1), (col - 'A')); //"-1" because we start with 1 instead of 0. "-A" because A in ascii is 65, but we start with 0
|
||||
|
||||
if((col == startCellName.charAt(0)) && (row == Integer.parseInt(startCellName.substring(1)))) {
|
||||
result = Long.parseLong(value);
|
||||
}
|
||||
else if(!value.isEmpty() && (Long.parseLong(value) < result)){
|
||||
result = Long.parseLong(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -251,9 +266,24 @@ public class Spreadsheet {
|
|||
* @return The maximum value of the block.
|
||||
*/
|
||||
private long max(String startCellName, String endCellName) {
|
||||
long result = 0;
|
||||
|
||||
for(char col = startCellName.charAt(0); col <= endCellName.charAt(0); col++){
|
||||
|
||||
return 0;
|
||||
for(int row = Integer.parseInt(startCellName.substring(1)); row <= Integer.parseInt(endCellName.substring(1)); row++) {
|
||||
|
||||
String value = get((row - 1), (col - 'A')); //"-1" because we start with 1 instead of 0. "-A" because A in ascii is 65, but we start with 0
|
||||
|
||||
if((col == startCellName.charAt(0)) && (row == Integer.parseInt(startCellName.substring(1)))) {
|
||||
result = Long.parseLong(value);
|
||||
}
|
||||
else if(!value.isEmpty() && (Long.parseLong(value) > result)){
|
||||
result = Long.parseLong(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue