Solución
solution.tsTypeScript
public class Solution {
public boolean bothTrue(boolean firstValue, boolean secondValue) {
// Escribe tu solución aquí
if(firstValue && secondValue){
return true;
}
return false;
}
}0respuestas