1.0 KiB
1.0 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f43e1000cf542c50ff4f | 5 | 问题209:循环逻辑 |
Description
x y x AND y000010100111x y x XOR y000011101110多个6输入二进制真值表τ满足公式
所有6位输入(a,b,c,τ,a,b,c,d,e,f)和τ(b,c,d,e,f,一个XOR(b和c))= 0 d,e,f)?
Instructions
Tests
tests:
- text: <code>euler209()</code>应该返回15964587728784。
testString: assert.strictEqual(euler209(), 15964587728784);
Challenge Seed
function euler209() {
// Good luck!
return true;
}
euler209();
Solution
// solution required
/section>