[Solved] How do I use on method to get the sizes of two different-sized arrayslists?

[ad_1]

This is frankly as basic a question as it gets, and google could have helped you with this easily. Here’s your entire method if you want to design your own.

public static int getCount(ArrayList A){
        return A.size();
    }

[ad_2]

solved How do I use on method to get the sizes of two different-sized arrayslists?