Solución
solution.tsTypeScript
public class Solution {
public boolean bothTrue(boolean firstValue, boolean secondValue) {
if (firstValue == secondValue & firstValue == true){
return true;
}
return false;
}
}0respuestas