Interview Guides
Given two arrays of equal length, y_true and y_pred, return the classification accuracy as a floating-point value. Accuracy is defined as the number of matching labels divided by the total number of labels. If the input arrays have different lengths or are empty, return 0.0.
0 <= len(y_true), len(y_pred) <= 10^50.0 if the arrays are empty or have different lengths