plduhoux
2/21/2018 - 12:10 AM

isPerfectScore

boolean isPerfectScore(boolean ans1, boolean ans2, boolean ans3) {
    return ans1 && ans2 && ans3;
}