2.0 KiB
2.0 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f4ca1000cf542c50ffdc | 5 | Problem 349: Langton's ant | 302008 | Проблема 349: Ленгтонский муравей |
Description
Начиная с сетки, которая полностью белая, сколько квадратов черное после 1018 ходов муравья?
Instructions
Tests
tests:
- text: <code>euler349()</code> should return 115384615384614940.
testString: assert.strictEqual(euler349(), 115384615384614940);
Challenge Seed
function euler349() {
// Good luck!
return true;
}
euler349();
Solution
// solution required