vendredi 25 septembre 2020

How to write a test class for this method?

public static boolean checkDuplicate(char[] input){
    Set tempSet = new HashSet();
    for (char chr : input) {
        if (!tempSet.add(chr))
            return  true;
    }
    return false;

I don't know how to write a test class for this method.

Aucun commentaire:

Enregistrer un commentaire