my code outputs the correct condition
package com.codegym.task.task08.task0830;
import java.io.BufferedReader;
import java.io.InputStreamReader;
/*
Task about algorithms
*/
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String[] array = new String[20];
for (int i = 0; i < array.length; i++) {
array[i] = reader.readLine();
}
sort(array);
for (String x : array) {
System.out.println(x);
}
}
public static void sort(String[] array) {
//write your code here
for(int i = 1; i < array.length;){
for(int j = 0; j < array.length; j++){
//check to all then swap
if(isGreaterThan(array[j].toLowerCase(), array[i].toLowerCase())){
String temp = array[i];
array[i] = array[j];
array[j] = temp;}
}
++i;
}
}
// String comparison method: 'a' is greater than 'b'
public static boolean isGreaterThan(String a, String b) {
return a.compareTo(b) > 0;
}
}