Public
Edited
Dec 7
Paused
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
function parse(input) {
return input.split("\n").map((d) => {
const nums = d.split(" ");
return {
result: Number(nums[0].slice(0, -1)),
operands: nums.slice(1).reverse().map(Number)
};
});
}
Insert cell
Insert cell
function validExpr(total, operands) {
if (operands.length === 1) {
return operands[0] === total;
}

const [canDiv, canSub] = [total % operands[0] === 0, total >= operands[0]];

if (!canDiv && !canSub) {
return false;
}

return (
(canDiv && validExpr(total / operands[0], operands.slice(1))) ||
(canSub && validExpr(total - operands[0], operands.slice(1)))
);
}
Insert cell
Insert cell
function part1(input) {
return d3.sum(
parse(input).filter((d) => validExpr(d.result, d.operands)),
(d) => d.result
);
}
Insert cell
Insert cell
Insert cell
Insert cell
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)
))
);
}
Insert cell
function part2(input) {
return d3.sum(
parse(input).filter((d) => validExpr2(d.result, d.operands)),
(d) => d.result
);
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more