я хочу решить так ), почему он у меня неправильно считает
public static void main(String[] args) throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));

        // алфавит
        String abc = "абвгдеёжзийклмнопрстуфхцчшщъыьэюя";
        char[] abcArray = abc.toCharArray();

        ArrayList<Character> alphabet = new ArrayList<Character>();
        for (int i = 0; i < abcArray.length; i++) {
            alphabet.add(abcArray[i]);
        }

        // ввод строк
        ArrayList<String> list = new ArrayList<String>();
        for (int i = 0; i < 10; i++) {
            String s = reader.readLine();
            list.add(s.toLowerCase());
        }

        ArrayList<Integer> listInt = new ArrayList<Integer>();
        for(int i = 0; i < alphabet.size(); i++) {
            int count1 = 0;
            listInt.add(count1);
        }

        for(int i = 0; i < list.size(); i++) {
            for(int j = 0; j < alphabet.size(); j++) {
                for(int t = 0; t < list.get(i).length(); t++) {
                    if(alphabet.get(j) == list.get(i).charAt(t)) {
                        int count = listInt.get(j) + 1;
                        listInt.add(count,j);
                    }
                }
            }
        }

        for(int i = 0; i < alphabet.size(); i++)
            System.out.println(alphabet.get(i) + " " + listInt.get(i));
    }
ps: я чуть-чуть доделал