* 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.3 KiB
1.3 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f3b01000cf542c50fec2 | 5 | Problem 67: Maximum path sum II | 问题67:最大路径总和II |
Description
Instructions
Tests
tests:
- text: <code>euler67()</code>应该返回7273。
testString: assert.strictEqual(euler67(), 7273);
Challenge Seed
function euler67() {
// Good luck!
return true;
}
euler67();
Solution
// solution required