Solución
solution.tsTypeScript
package main
func bothTrue(firstValue bool, secondValue bool) bool {
if firstValue && secondValue {
return true
}
return false
}0respuestas
package main
func bothTrue(firstValue bool, secondValue bool) bool {
if firstValue && secondValue {
return true
}
return false
}Aún no hay respuestas
¡Sé el primero en responder!
Recuerda ser amable. Estás comentando la solución de otra persona. Comparte tu perspectiva de forma constructiva y respetuosa.