* fix: Chinese test suite Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working. * fix: ran script, updated testStrings and solutions
1.1 KiB
1.1 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f4b01000cf542c50ffc2 | 5 | Problem 323: Bitwise-OR operations on random integers | 问题323:对随机整数进行按位或运算 |
Description
找到N的期望值。 将答案四舍五入到小数点后10位。
Instructions
Tests
tests:
- text: <code>euler323()</code>应该返回6.3551758451。
testString: assert.strictEqual(euler323(), 6.3551758451);
Challenge Seed
function euler323() {
// Good luck!
return true;
}
euler323();
Solution
// solution required