Multiple choice
This circuit is measured once in the computational basis. What is P(|00⟩)?
const c = circuit(2); // Remove the redundant X X = I pair; what remains is H then CX. c.h(0); c.cx(0, 1); return c;
Commit your prediction for P(|00⟩) — then run it.