function validExpr2(total, operands) {
if (operands.length === 1) {
return operands[0] === total;
}
const canDiv = total % operands[0] === 0;
const canSub = total >= operands[0];
const canCat = String(total).endsWith(operands[0]);
if (!canDiv && !canSub && !canCat) {
return false;
}
return (
(canDiv && validExpr2(total / operands[0], operands.slice(1))) ||
(canSub && validExpr2(total - operands[0], operands.slice(1))) ||
(canCat &&
validExpr2(
Number(String(total).slice(0, -String(operands[0]).length)),
operands.slice(1)
))
);
}