Given a "Complex" class with all the standard methods for complex numbers, design the static method below to find and return the smallest complex number.
public static Complex getMin (Complex [ ] numbers);
2. Design the static method below to count and return the frequency of each digit in the array of strings.
public static int [ ] countFreq (String [ ] strings);