1.7 KiB
1.7 KiB
id, localeTitle, challengeType, title
id | localeTitle | challengeType | title |
---|---|---|---|
5 | 5900f40a1000cf542c50ff1d | 5 | Problem 158: Exploring strings for which only one character comes lexicographically after its neighbour to the left |
Description
Instructions
Tests
tests:
- text: <code>euler158()</code> debe devolver 409511334375.
testString: 'assert.strictEqual(euler158(), 409511334375, "<code>euler158()</code> should return 409511334375.");'
Challenge Seed
function euler158() {
// Good luck!
return true;
}
euler158();
Solution
// solution required